在頁(yè)面數(shù)據(jù)為空的情況下虽风,往往需要配置圖文展示以代替整頁(yè)的空白
DZNEmptyDataSet對(duì)UIScrollView作了擴(kuò)展戴涝,自動(dòng)監(jiān)測(cè)當(dāng)UIScrollView的子類(lèi)例如UITableView無(wú)內(nèi)容時(shí)菲茬,就會(huì)顯示配置好的空數(shù)據(jù)圖文繁成。
EmptyDataSetDemo.gif
用法
#import "UIScrollView+EmptyDataSet.h"
@interface ViewController () <UITableViewDataSource, UITableViewDelegate, DZNEmptyDataSetSource, DZNEmptyDataSetDelegate>
@property (nonatomic, strong) UITableView *tableView;
@property (nonatomic, strong) NSMutableArray<NSString *> *dataSource;
@end
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
self.title = @"EmptyDataSetDemo";
self.tableView.frame = self.view.bounds;
[self.view addSubview:self.tableView];
[self.tableView registerClass:[UITableViewCell class] forCellReuseIdentifier:NSStringFromClass([UITableViewCell class])];
[self.dataSource addObjectsFromArray:[self strArray]];
self.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithTitle:@"生成" style:UIBarButtonItemStylePlain target:self action:@selector(onLeft)];
self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] initWithTitle:@"清空" style:UIBarButtonItemStylePlain target:self action:@selector(onRight)];
}
- (void)onLeft {
[self.dataSource addObjectsFromArray:[self strArray]];
[self.tableView reloadData];
}
- (void)onRight {
[self.dataSource removeAllObjects];
[self.tableView reloadData];
}
- (UITableView *)tableView {
if (!_tableView) {
_tableView = [[UITableView alloc] init];
_tableView.delegate = self;
_tableView.dataSource = self;
// 設(shè)置emptyDataSet代理
_tableView.emptyDataSetDelegate = self;
_tableView.emptyDataSetSource = self;
_tableView.tableFooterView = [UIView new];
}
return _tableView;
}
- (NSMutableArray<NSString *> *)dataSource {
if (!_dataSource) {
_dataSource = [NSMutableArray array];
}
return _dataSource;
}
- (NSArray<NSString *> *)strArray {
return @[@"AAA", @"BBB", @"CCC"];
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return self.dataSource.count;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:NSStringFromClass([UITableViewCell class])];
cell.textLabel.text = self.dataSource[indexPath.row];
return cell;
}
- (UIImage *)imageForEmptyDataSet:(UIScrollView *)scrollView {
return [UIImage imageNamed:@"empty.png"];
}
- (NSAttributedString *)titleForEmptyDataSet:(UIScrollView *)scrollView {
NSString *text = @"標(biāo)題標(biāo)題標(biāo)題";
NSDictionary *attr = @{NSFontAttributeName : [UIFont systemFontOfSize:14],
NSForegroundColorAttributeName : [UIColor darkGrayColor]};
NSAttributedString *attStr = [[NSAttributedString alloc] initWithString:text attributes:attr];
return attStr;
}
- (NSAttributedString *)descriptionForEmptyDataSet:(UIScrollView *)scrollView {
NSString *text = @"夕陽(yáng)照耀下的花崗巖山地仿佛披上了一層薄薄的金紗,眼睛所及之處都是不可言喻的美景舵变。各種野生動(dòng)物在晝夜交接的夕陽(yáng)下活動(dòng)记焊,達(dá)特穆?tīng)枃?guó)家公園總會(huì)給人不虛此行的實(shí)感逸月。";
NSMutableAttributedString *attributedString = [[NSMutableAttributedString alloc] initWithString:text attributes:nil];
[attributedString addAttribute:NSFontAttributeName value:[UIFont systemFontOfSize:12] range:NSMakeRange(0, text.length)];
[attributedString addAttribute:NSForegroundColorAttributeName value:[UIColor lightGrayColor] range:NSMakeRange(0, text.length)];
return attributedString;
}