28 lines
600 B
Objective-C
Executable File
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
|