有没有办法设置单元格内容和imagaView:
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
我想在更新tabledataSource之前更新单元格。
答案 0 :(得分:4)
你可以像这样得到对你的细胞的引用......
UITableViewCell *selectedCell = [self cellForRowAtIndexPath:indexPath];
然后进行像......这样的修改。
selectedCell.titleLabel.text = @"new title";
selectedCell.imageView.image = [UIImage imageNamed:@"newImage.png"];