GKBaseTableViewController.h 412 B

12345678910111213141516171819
  1. //
  2. // GKBaseTableViewController.h
  3. // GKPageScrollView
  4. //
  5. // Created by QuintGao on 2018/10/28.
  6. // Copyright © 2018 QuintGao. All rights reserved.
  7. //
  8. #import "GKDemoBaseViewController.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface GKBaseTableViewController : GKDemoBaseViewController<UITableViewDataSource, UITableViewDelegate>
  11. @property (nonatomic, strong) UITableView *tableView;
  12. @end
  13. NS_ASSUME_NONNULL_END