尝试更改单元格内容不起作用

时间:2014-08-26 20:59:24

标签: ios objective-c uitableview

我尝试在用户在文本字段中输入内容后更改单元格的背景颜色。我尝试过以下代码但没有任何反应。

NSIndexPath *indexPath = [NSIndexPath indexPathForRow:1 inSection:2];
UITableViewCell *cell = [self.tableView cellForRowAtIndexPath:indexPath];
cell.backgroundColor = [UIColor grayColor];

有什么我看不到的吗?

1 个答案:

答案 0 :(得分:0)

我唯一能想到的是你的章节/行号错了,即

NSIndexPath *indexPath = [NSIndexPath indexPathForRow:1 inSection:2];

我在tableView中有两个部分,只要将第2部分称为第1部分就可以工作,因为部分和行号从0开始。如果这听起来太明显,请提前道歉,但我一直这样做。 ..: - )