我想使用UIRefreshControl在UITableView底部实现pull to refresh效果?
有任何想法吗?
最佳答案 无法将UIRefreshControll以类似于将其置于顶部的方式放置到UITableView的底部.但无论如何,您可以将所有内容放在桌面视图的背景视图中.
但我喜欢的解决方案是当用户滚动到表格视图的最底部时下载其他项目.我通过UITableViewControllerDelegate方法处理它:
func tableView(tableView: UITableView, willDisplayCell cell: UITableViewCell, forRowAtIndexPath indexPath: NSIndexPath) {
if indexPath.row == self.items.count - 1 {
// Download more items
}
}