码迷,mamicode.com
首页 > 其他好文 > 详细

tableview预加载

时间:2017-10-09 13:17:21      阅读:268      评论:0      收藏:0      [点我收藏+]

标签:aar   str   show   数据   table   begin   foo   fresh   tab   

原理:

tableview的调用

-(UITableViewCell*)tableView:(UITableView*)tableView cellForRowAtIndexPath:(NSIndexPath*)indexPath方法

判断indexPath.row和服务器每页返回的数据的count值大小进行比较(例子中是每页返回20条数据),进行加载数据,实现提前预先加载服务器返回的下一页的数据。


if( indexPath.row==self.dataArray.count-2 ) {

//  在这个地方调用加载更多数据的方法。

[footer beginRefreshing];

}

 优点:准确率高,数据执行不会重复


tableview预加载

标签:aar   str   show   数据   table   begin   foo   fresh   tab   

原文地址:http://www.cnblogs.com/OIMM/p/7640464.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!