cdts/xdts-ios 3/TreeHole/Code/Utility/MTCommonListTable/MTCommonListTableViewController.h
2023-07-27 09:20:00 +08:00

28 lines
600 B
Objective-C
Executable File

//
// MTCommonListTableViewController.h
// MTCommonListTable
//
// Created by ko1o on 2018/8/29.
// Copyright © 2018年 ko1o. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "MTCommonListTableConfig.h"
#import "PYBaseViewController.h"
@protocol MTCommonListTableProtocol <NSObject>
@required
- (MTCommonListTableConfig *)tableConfigForTableViewContorller;
@end
@interface MTCommonListTableViewController : PYBaseViewController <MTCommonListTableProtocol, UITableViewDelegate, UITableViewDataSource>
@property (nonatomic, strong) UITableView *tableView;
- (void)reloadData;
@end