本來應該很早就寫的 , 一直覺得沒有寫這個的必要,今天比較閒 想了想還是寫下這個。大多數情況下,我們的app 會出現沒有資料的時候,這個時候我們又不能讓使用者在哪裡對著一片空白,所以我們需要做點事情;
.m檔案中:
#import "ViewController.h"
#import "UIScrollView+EmptyDataSet.h"
#import "LeftTableViewCell.h"
#define WIDTH self.view.bounds.size.width
#define HEIGHT self.view.bounds.size.height
@interface ViewController ()<UITableViewDelegate,UITableViewDataSource,DZNEmptyDataSetSource, DZNEmptyDataSetDelegate>{
UITableView *_leftTableView;
NSMutableArray *_leftArray;
}
@end
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
_leftArray = [NSMutableArray arrayWithCapacity:0];
_leftTableView = [[UITableView alloc] initWithFrame:CGRectMake(0, 0, WIDTH, HEIGHT) style:UITableViewStylePlain];
_leftTableView.delegate = self;
_leftTableView.backgroundColor = [UIColor whiteColor];
_leftTableView.dataSource = self;
_leftTableView.emptyDataSetSource = self;
_leftTableView.emptyDataSetDelegate = self;
_leftTableView.tableHeaderView = [UIView new];
_leftTableView.tableFooterView = [UIView new];
_leftTableView.separatorStyle = UITableViewCellSeparatorStyleNone;
[_leftTableView registerNib:[UINib nibWithNibName:@"LeftTableViewCell" bundle:nil] forCellReuseIdentifier:@"leftMessageID"];
[_leftTableView registerNib:[UINib nibWithNibName:@"LeftTwoTableViewCell" bundle:nil] forCellReuseIdentifier:@"leftTwoMessageID"];
_leftTableView.estimatedRowHeight = 44.0f;
_leftTableView.rowHeight = UITableViewAutomaticDimension;
[self.view addSubview:_leftTableView];
}
//沒有資料的時候 放一張圖片佔位
- (UIImage *)imageForEmptyDataSet:(UIScrollView *)scrollView {
return [UIImage imageNamed:@"icon_none_data"];
}
- (CAAnimation *)imageAnimationForEmptyDataSet:(UIScrollView *)scrollView {
CABasicAnimation *animation = [CABasicAnimation animationWithKeyPath: @"transform"];
animation.fromValue = [NSValue valueWithCATransform3D:CATransform3DIdentity];
animation.toValue = [NSValue valueWithCATransform3D:CATransform3DMakeRotation(M_PI_2, 0.0, 0.0, 1.0)];
animation.duration = 0.25;
animation.cumulative = YES;
animation.repeatCount = MAXFLOAT;
return animation;
}
//點選當前資料空白處時 可以重新整理
- (void)emptyDataSet:(UIScrollView *)scrollView didTapView:(UIView *)view
{
if (_leftTableView == scrollView) {
//開始重新整理
NSLog(@"開始重新整理");
}
}
//沒有資料的時候 tabbleView等 是否可以滾動
- (BOOL)emptyDataSetShouldAllowScroll:(UIScrollView *)scrollView
{
return YES;
}
//沒有資料的時候新增文字提示
- (NSAttributedString *)titleForEmptyDataSet:(UIScrollView *)scrollView {
NSString *text = @"這裡還什麼都沒有";
NSDictionary *attributes = @{NSFontAttributeName: [UIFont boldSystemFontOfSize:16.0f],
NSForegroundColorAttributeName: [UIColor lightGrayColor]};
return [[NSAttributedString alloc] initWithString:text attributes:attributes];
}
#pragma UITableViewDelegate
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return _leftArray.count;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
if (tableView == _leftTableView) {
LeftTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"leftMessageID"];
if (!cell) {
cell = (LeftTableViewCell*)[[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier: @"leftMessageID"];
}
cell.name.text = @"";
cell.selectionStyle = UITableViewCellSelectionStyleNone;
return cell;
}
return nil;
}
@end
複製程式碼
效果就是下面的圖:
===========================================
這裡是demo:⬇️