// // ZCBaseTableVC.h // XLChat // // Created by 张灿 on 2017/10/24. // Copyright © 2017年 张灿. All rights reserved. // #import "ZCBaseVC.h" @interface ZCBaseTableVC : ZCBaseVC @property(nonatomic,strong) UITableView* tableView; //是否显示空数据页面 默认为显示 @property(nonatomic,assign) BOOL isShowEmptyData; //空页面是否允许滚动 默认为No @property(nonatomic,assign) BOOL isAllowScroll; //空数据页面的title -- 可不传,默认为:暂无任何数据 @property(nonatomic,strong) NSString *noDataTitle; //空数据页面的图片 -- 可不传,默认图片为:NoData @property(nonatomic,strong) NSString *noDataImgName; //显示副标题的时候,需要赋值副标题,否则不显示 @property(nonatomic,strong) NSString *noDataDetailTitle; //按钮标题、图片 --不常用 @property(nonatomic,strong) NSString *btnTitle; @property(nonatomic,strong) NSString *btnImgName; /// 下拉刷新头部 @property (nonatomic, strong) MJRefreshNormalHeader *refreshHeader; /// 上拉加载更多底部,还有更多数据可以加载的状态下使用 @property (nonatomic, strong) MJRefreshAutoNormalFooter *loadMoreFooter; /// 不会上拉加载更多的底部,没有更多数据可以加载的状态下使用 @property (nonatomic, strong) MJRefreshAutoNormalFooter *noLoadMoreFooter; /// 下拉刷新回调方法,具体实现代码需要子类实现 - (void)headerRefreshing; /// 上拉加载回调方法,具体实现代码需要子类实现 - (void)footerRefreshing; @end