iOS如何无嵌入设置空数据显示
1、使用UIScrollView+EmptyDataSet实现列表的空数据展示,将UIScrollView+EmptyDataSet下载之后将整个文件夹拖入到工程里面,文件夹下只有.h与.m两个文件,结构如下:

2、在需要的控制器界面声明一个tableview的属性,同时遵循
UITableView的代理方法,在这里同时也遵循DZNEmptyDataSetSource与DZNEmptyDataSetDelegate代理方法。

3、在viewDidLoad下初始化UITableView添加到视图上,同时设置代理:
self.tableView.delegate = self;
self.tableView.dataSource = self;
self.tableView.emptyDataSetSource = self;
self.tableView.emptyDataSetDelegate = self;

4、实现UITableView的UITableViewDataSource下的两个方法,分别设置列表行数以及对应的Cell:
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
return 10;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"cell"];
if (!cell) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"cell"];
}
cell.selectionStyle = UITableViewCellSelectionStyleNone;
cell.backgroundColor = [UIColor colorWithRed:(random()%256)/255.0 green:(random()%256)/255.0 blue:(random()%256)/255.0 alpha:1.0];
return cell;
}

5、实现DZNEmptyDataSetSource下的- (nullable NSAttributedString *)titleForEmptyDataSet:(UIScrollView *)scrollView代理方法可以设置空数据显示时的提示文字:
- (nullable NSAttributedString *)titleForEmptyDataSet:(UIScrollView *)scrollView{
return [[NSAttributedString alloc] initWithString:@"暂无数据" attributes:@{NSFontAttributeName:[UIFont systemFontOfSize:15]}];
}

6、实现DZNEmptyDataSetSource下的- (nullable UIImage *)imageForEmptyDataSet:(UIScrollView *)scrollView代理方法可以设置空数据显示时的提示图片:
- (nullable UIImage *)imageForEmptyDataSet:(UIScrollView *)scrollView{
return [UIImage imageNamed:@"icon_nodata"];
}

7、实现DZNEmptyDataSetSource下的- (nullable UIColor *)backgroundColorForEmptyDataSet:(UIScrollView *)scrollView代理方法可以设置空数据显示时的界面背景颜色:
- (nullable UIColor *)backgroundColorForEmptyDataSet:(UIScrollView *)scrollView{
return [UIColor colorWithRed:237/255.0 green:237/255.0 blue:237/255.0 alpha:1.0];
}

8、为了查看效果,先将列表的行数设置为10,列表颜色设置为随机色,效果显示如下:

9、将列表的行数设置为0,空数据界面显示效果如下:
