我希望在表格视图中每页加载一定数量的对象。就像Instagram一样。我只是在使用代码行的PFQueryTableViewController中看到了如何做到这一点...
self.objectsPerPage = //Amount of objects per page
我正在使用Parse,但我没有使用PFQueryTableViewController。我将如何完成上述代码行的相同操作?
答案 0 :(得分:1)
尝试以这种方式接近
func scrollViewDidScroll(scrollView: UIScrollView) {
if scrollView.contentSize.height - scrollView.contentOffset.y < (view.bounds.size.height) {
if !isLoading() {
loadNextPage()
}
}
}
当tableview在全屏幕内时加载下一个对象,玩转。
来源:Detecting the bottom "bounce" of UITableView
编辑:您也可以使用此广告