将表格的刷新控制置于底部

时间:2016-02-20 08:40:17

标签: ios uitableview uirefreshcontrol

我要通过拉到表格的底部来实现UITableView来显示较旧的项目,如何在当前列表的底部显示刷新图标UIActivityIndicator

非常感谢!

1 个答案:

答案 0 :(得分:0)

您可以使用具有简单易用方法的开源库SVPullToRefresh

[tableView addInfiniteScrollingWithActionHandler:^{
    // append data to data source, insert new cells at the end of table view
    // call [tableView.infiniteScrollingView stopAnimating] when done
}];

当调用actionHandler块时,请将代码放入较旧的内容中。