判断tableview滚动到最后一行cell方法:
- (void)scrollViewDidScroll:(UIScrollView *)scrollView {
if (self.statuses.count == 0) {
return;
}
// 1.差距
CGFloat delta =scrollView.contentSize.height - scrollView.contentOffset.y;
//刚好能完整看到footer的高度
CGFloat sawFooterH = scrollView.height -self.tabBarController.tabBar.height;
// 2.如果能看见整个footer
if (delta <= (sawFooterH - 0)) {
//显示footer
self.tableView.tableFooterView.hidden =NO;
//加载更多状态
[self loadMoreStatus];
}
}