我有一个应用程序,它在表格视图中的单元格中列出了一些数据。我希望用户能够选择一个表格视图单元格,任何一个,并让应用程序循环通过 5 个较低的单元格。这是我到目前为止所拥有的:
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
// Navigation logic may go here. Create and push another view controller.
[self fetchCellsToProcess:indexPath];
}
这是 fetchCellsToProcess: 方法:
-(void)fetchCellsToProcess:(NSIndexPath*)indexPath{
for (int cellsToProcess = 0; cellsToProcess < 5; cellsToProcess++) {
//process each cell
//...
}
}
我需要使用 indexPath 来获取它的 indexPath.row。然后将 5 添加到那个 indexPath.row 并且只处理传入的 indexPath.row 和 indexPath.row+5 之间的推文。我应该使用什么编程逻辑来循环通过单元格 x -> x+5?