GKDemoBaseViewController.m 474 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // GKDemoBaseViewController.m
  3. // GKPageScrollView
  4. //
  5. // Created by QuintGao on 2018/10/27.
  6. // Copyright © 2018 QuintGao. All rights reserved.
  7. //
  8. #import "GKDemoBaseViewController.h"
  9. @interface GKDemoBaseViewController ()
  10. @end
  11. @implementation GKDemoBaseViewController
  12. - (void)viewDidLoad {
  13. [super viewDidLoad];
  14. self.view.backgroundColor = [UIColor clearColor];
  15. }
  16. - (void)dealloc {
  17. NSLog(@"%@ dealloc", NSStringFromClass(self.class));
  18. }
  19. @end