我在UITableview中加载了100条记录,最初我只是想重新加载前25条记录,当我们在25条记录之后滚动tableview时,表想要重新加载接下来的25条记录,就像我想对ios中的所有记录一样。我怎样才能做到这一点?有人帮帮我吗?
答案 0 :(得分:1)
将row_count
声明为int。在viewDidLoad
设置row_count = 25;
然后numberOfRowsInSection
将return [table_array count];
替换为return row_count;
然后使用我的代码在scrollViewDidScroll
-(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];
}
}
设置如下..它会根据需要加载您的数据