美文网首页iOS Developer
空白提示第三方开源库—— DZNEmptyDataSet

空白提示第三方开源库—— DZNEmptyDataSet

作者: GalaxyJM | 来源:发表于2016-12-27 14:01 被阅读58次

1.pod 导入
2.导入头文件 #import "UIScrollView+EmptyDataSet.h"
3.继承代理 DZNEmptyDataSetDelegate,DZNEmptyDataSetSource
4.BaseTableView.m

- (instancetype)initWithFrame:(CGRect)frame style:(UITableViewStyle)style{
    self = [super initWithFrame:frame style:style];
    if (self) {
        self.emptyDataSetDelegate = self;
        self.emptyDataSetSource = self;
        
        self.tableFooterView = [UIView new];
    }
    return self;
}

- (UIColor *)backgroundColorForEmptyDataSet:(UIScrollView *)scrollView{
    return kColorWhite;
}

- (UIImage *)buttonImageForEmptyDataSet:(UIScrollView *)scrollView forState:(UIControlState)state{
    return [UIImage imageNamed:@"login_icon_weibo"];
}

- (void)emptyDataSet:(UIScrollView *)scrollView didTapButton:(UIButton *)button{
    //刷新页面 
    if (self.reloadBlock) {
        self.reloadBlock();
    }
}

相关文章

网友评论

    本文标题:空白提示第三方开源库—— DZNEmptyDataSet

    本文链接:https://www.haomeiwen.com/subject/istevttx.html