将 table 的刷新控件放在底部
Put refresh control of table at the bottom
我将实施 UITableView
以通过拉到 table 的底部来显示较旧的项目,如何在当前列表的底部显示刷新图标 UIActivityIndicator
?
非常感谢!
您可以使用开源库SVPullToRefresh,它有一个简单易用的方法:
[tableView addInfiniteScrollingWithActionHandler:^{
// append data to data source, insert new cells at the end of table view
// call [tableView.infiniteScrollingView stopAnimating] when done
}];
当调用 actionHandler
块时,输入您的代码以获取较旧的内容。
我将实施 UITableView
以通过拉到 table 的底部来显示较旧的项目,如何在当前列表的底部显示刷新图标 UIActivityIndicator
?
非常感谢!
您可以使用开源库SVPullToRefresh,它有一个简单易用的方法:
[tableView addInfiniteScrollingWithActionHandler:^{
// append data to data source, insert new cells at the end of table view
// call [tableView.infiniteScrollingView stopAnimating] when done
}];
当调用 actionHandler
块时,输入您的代码以获取较旧的内容。