12345678910111213141516171819 |
- //
- // CommonTableViewController.h
- // XLPageViewControllerExample
- //
- // Created by MengXianLiang on 2019/5/6.
- // Copyright © 2019 xianliang meng. All rights reserved.
- // 通用表格
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface CommonTableViewController : UIViewController
- @property (nonatomic, strong) UIView *headerView;
- @end
- NS_ASSUME_NONNULL_END
|