TMOTableView包括RefreshControl、LoadMoreControl、FirstLoadControl,您可以根据需要自定义它。它支持iOS5+,支持UIViewController & UITableViewController。
pod 'TMOTableView'
Xib 或 StoryBoard -> 将UITableView子类化到TMOTableView
代码 -> 初始化TMOTableView
您使用FirstLoadControl以避免显示空内容,并提供良好的用户体验。我们提供一个默认的loadingView和一个默认的failView。此外,您可以自定义它。
使用真的很简单,请参阅示例代码。
[self.tableView firstLoadWithBlock:^(TMOTableView *tableView, DemoTableViewController *viewController) {
//do something load data jobs
dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(8.0 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
if (arc4random() % 10 < 3) {
//We try to make load data jobs fail, and you can see what happen.
[tableView.myFirstLoadControl fail];
}
else {
viewController.numberOfRowsInSection0 = 5;
viewController.numberOfRowsInSection1 = 8;
[tableView.myFirstLoadControl done];//You don't need to use [tableView reloadData].
}
});
} withLoadingView:customLoadingView withFailView:customFailView];
[self.tableView refreshWithCallback:^(TMOTableView *tableView, DemoTableViewController *viewController) {
viewController.numberOfRowsInSection0 = arc4random() % 10;
viewController.numberOfRowsInSection1 = arc4random() % 10;
[tableView.myRefreshControl done];
} withDelay:1.5];//Really easy to use.
//Don't use self in block! Use tableView, viewController. It will 'Circular references'.
[self.tableView loadMoreWithCallback:^(TMOTableView *tableView, DemoTableViewController *viewController) {
dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(1.0 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
if (arc4random() % 10 < 4) {
//try to fail
[tableView.myLoadMoreControl fail];
}
else {
viewController.numberOfRowsInSection1 += 10;
[tableView.myLoadMoreControl done];
}
});
} withDelay:0.0];