我想在UITableViewController
上进行无限滚动,我正在使用scrollViewDidScroll:
方法检查contentOffset,但是我无法钻取下一个偏移量,它将是 ScrollView的底部。
有什么建议吗?
提前致谢。
答案 0 :(得分:7)
假设contentSize.height> bounds.size.height
if ( contentOffset.y >= contentSize.height - bounds.size.height ) { ... }