0

我有 100 条记录要加载到 UITableview 中,最初我只想重新加载前 25 条记录,当我们在 25 条记录后滚动 tableview 时,表想要重新加载接下来的 25 条记录,就像我想对 ios 中的所有记录一样。如何我这样做?有人帮我吗?

4

1 回答 1

1

声明 row_count为 int。在viewDidLoadset 中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 回答