我已在NSArray中保存了值。如果我单击tableView中的单元格,它将在字段中加载Array中的值。如果我想在单击按钮时从字段中的下一个/上一个单元格加载值,该怎么办?
感谢所有答案。
答案 0 :(得分:0)
你的问题很不清楚,所以我尽力回答。
你有单击的单元格的indexPath.row吗?
您可以使用以下方式访问上一个单元格:
UITableViewCell *previousCell = (UITableViewCell*)[tableView cellForRowAtIndexPath:[NSIndexPath indexPathForRow:indexPath.row - 1 inSection:indexPath.section]];
同样适用于下一个细胞:
UITableViewCell *nextCell = (UITableViewCell*)[tableView cellForRowAtIndexPath:[NSIndexPath indexPathForRow:indexPath.row + 1 inSection:indexPath.section]];
我假设您将处理当前行是第一行/最后一行的所有情况,因此您不希望在此之前/之后尝试访问行。