CommonTableViewController.h 375 B

12345678910111213141516171819
  1. //
  2. // CommonTableViewController.h
  3. // XLPageViewControllerExample
  4. //
  5. // Created by MengXianLiang on 2019/5/6.
  6. // Copyright © 2019 xianliang meng. All rights reserved.
  7. // 通用表格
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface CommonTableViewController : UIViewController
  11. @property (nonatomic, strong) UIView *headerView;
  12. @end
  13. NS_ASSUME_NONNULL_END