美文网首页
iOS DZNEmptyDataSet 设置图片位置

iOS DZNEmptyDataSet 设置图片位置

作者: 曹彬彬有爱 | 来源:发表于2017-12-14 17:20 被阅读0次

    1.导入头文件#import "UIScrollView+EmptyDataSet.h"

    2.代理协议DZNEmptyDataSetSource, DZNEmptyDataSetDelegate;

    _tableView.emptyDataSetSource = self;

    _tableView.emptyDataSetDelegate = self;

    3.实现代理方法

    #pragma mark - DZNEmptyDataSetSource

    // 返回图片

    - (UIImage *)imageForEmptyDataSet:(UIScrollView *)scrollView{

    return [UIImage imageNamed:@"bg_img_middle_chahua_3"];

    }

    // 返回标题文字

    - (NSAttributedString *)titleForEmptyDataSet:(UIScrollView *)scrollView {

    NSString *text = @"您当前暂无审核记录";

    NSDictionary *attribute = @{NSFontAttributeName: [UIFont systemFontOfSize:SYRealValue(17)], NSForegroundColorAttributeName: [UIColor lightGrayColor]};

    return [[NSAttributedString alloc] initWithString:text attributes:attribute];

    }

    // 调整图片位置

    - (CGFloat)verticalOffsetForEmptyDataSet:(UIScrollView *)scrollView {

    return -50;

    }

    相关文章

      网友评论

          本文标题:iOS DZNEmptyDataSet 设置图片位置

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