我有 100 条记录要加载到 UITableview 中,最初我只想重新加载前 25 条记录,当我们在 25 条记录后滚动 tableview 时,表想要重新加载接下来的 25 条记录,就像我想对 ios 中的所有记录一样。如何我这样做?有人帮我吗?
问问题
223 次
1 回答
1
声明 row_count
为 int。在viewDidLoad
set 中row_count = 25;
,然后numberOfRowsInSection
替换return [table_array count];
为 return row_count;
Then add my method with my code inscrollViewDidScroll
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return row_count;
}
- (void)scrollViewDidScroll:(UIScrollView *)aScrollView {
CGPoint offset = aScrollView.contentOffset;
CGRect bounds = aScrollView.bounds;
CGSize size = aScrollView.contentSize;
NSLog(@"%@", NSStringFromCGSize(size));
UIEdgeInsets inset = aScrollView.contentInset;
float y = offset.y + bounds.size.height - inset.bottom;
float h = size.height;
float reload_distance = 10;
if(y > h + reload_distance) {
row_count = (row_count + 25 > [table_array count])?[table_array count]:row_count + 25;
[Yourtable reloadData];
}
}
像这样设置..它将根据需要加载您的数据
于 2013-10-30T06:32:31.393 回答