EBEmptyView-framework

自定义空白页面


License
MIT
Install
pod try EBEmptyView-framework

Documentation

EBEmptyView

one line code to show emptyView in UITableView or UIScrollView

ScreenShot

Installation

pod EBEmptyView

Show the emptyView

    //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"];

Usage

    #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"];