FWTableViewController
@protocol FWTableViewController <FWViewController, UITableViewDataSource,
UITableViewDelegate>
表格视图控制器协议,可覆写
-
表格视图,默认不显示滚动条,Footer为空视图。Plain有悬停,Group无悬停
Declaration
Objective-C
@optional @property (nonatomic, readonly) NS_SWIFT_UNAVAILABLE("") UITableView *tableView;
-
表格数据,默认空数组,延迟加载
Declaration
Objective-C
@optional @property (nonatomic, readonly) NS_SWIFT_UNAVAILABLE("") NSMutableArray *tableData;
-
渲染表格视图样式,默认Plain
Declaration
Objective-C
- (UITableViewStyle)renderTableStyle;
-
渲染表格视图,renderView之前调用,默认未实现
Declaration
Objective-C
- (void)renderTableView;
-
渲染表格视图布局,renderView之前调用,默认铺满
Declaration
Objective-C
- (void)renderTableLayout;