笔者用的MJRefresh这个第三方加载的库
//原理就是在tableView调用
-(UITableViewCell*)tableView:(UITableView*)tableView cellForRowAtIndexPath:(NSIndexPath*)indexPath方法
判断indexPath.row和服务器每页返回的数据的count值大小进行比较(例子中是每页返回20条数据),进行加载数据,实现提前预先加载服务器返回的下一页的数据。
if( indexPath.row==self.dataArray.count-2 ) {
// 在这个地方调用加载更多数据的方法。
[footer beginRefreshing];
}
网友评论