有没有办法从didSelectRowAtIndexPath设置单元格内容和imagaView?

时间:2011-08-26 09:41:41

标签: ios

有没有办法设置单元格内容和imagaView:

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath

我想在更新tabledataSource之前更新单元格。

1 个答案:

答案 0 :(得分:4)

你可以像这样得到对你的细胞的引用......

UITableViewCell *selectedCell = [self cellForRowAtIndexPath:indexPath];

然后进行像......这样的修改。

selectedCell.titleLabel.text = @"new title";
selectedCell.imageView.image = [UIImage imageNamed:@"newImage.png"];