一个简单ViewController的category,实现请求无数据时,或数据加载失败时状态的提示,支持纯文字,图片,Gif,使用block回调,看图⬇️;
具体使用方法
- 文字提示
[self showStatus:@"没有数据哦!" tapViewWithBlock:^{
NSLog(@"点击屏幕了");
}];
- 文字加图片
[self showStatus:@"没有数据哦!" imageName:@"no_data.jpg" type:nil tapViewWithBlock:^{ NSLog(@"点击屏幕了"); }];
- 文字加Gif
[self showStatus:@"没有数据哦!" imageName:@"gif" type:@"gif" tapViewWithBlock:^{ NSLog(@"点击屏幕了"); }];
- 隐藏
[self hide];
下载代码
请移步至 https://github.com/leeCoding/LTDataStatus
如有Bug或其他问题请留言,会第一时间回复,