EBEmptyView 0.0.6

EBEmptyView 0.0.6

测试已测试
语言语言 Obj-CObjective C
许可证 MIT
发布最后发布2016 年 9 月

Orta Therox 维护。



  • kaychn

显示空视图的代码行

ScreenShot

安装

pod EBEmptyView

显示空视图

    //show the default view
    [_tableView eb_showDefaultEmptyView:_tableArray.count==0];

    //you can also set the image and text yourself
    //[_tableView eb_showEmptyView:_tableArray.count==0 withEmptyImage:@"emptyImage" withEmptyText:@"NO DATA"];

用法

    #import "UIScrollView+EBEmptyView.h"

    _tableArray = [NSMutableArray array];
    //query data....
    //operate data...
    [_tableView reloadData];

    //show the default view
    [_tableView eb_showDefaultEmptyView:_tableArray.count==0];

    //you can also set the image and text yourself
    //[_tableView eb_showEmptyView:_tableArray.count==0 withEmptyImage:@"emptyImage" withEmptyText:@"NO DATA"];