| 1234567891011121314151617181920212223242526272829 |
- //
- // GKDemoBaseViewController.m
- // GKPageScrollView
- //
- // Created by QuintGao on 2018/10/27.
- // Copyright © 2018 QuintGao. All rights reserved.
- //
- #import "GKDemoBaseViewController.h"
- @interface GKDemoBaseViewController ()
- @end
- @implementation GKDemoBaseViewController
- - (void)viewDidLoad {
- [super viewDidLoad];
-
- self.view.backgroundColor = [UIColor clearColor];
- }
- - (void)dealloc {
- NSLog(@"%@ dealloc", NSStringFromClass(self.class));
- }
- @end
|