UITableview的分页?

时间:2015-03-11 07:50:53

标签: uitableview ios7 pagination

我是iOS开发人员的新手。我的网络服务中有100条记录。我从webservice读取它们并将它们绑定到UITableview。我的问题是,我只想将20条记录绑定到我的tableView中,其他80条记录用于UITableView的分页。谁能告诉我怎么做?谢谢。

1 个答案:

答案 0 :(得分:0)

您需要使用 UITableViewDataSource 方法:

  • (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section //返回20或最后一页的行保留方式
  • (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath //设置页面中每个单元格的单元格和数据