如何从cellForRowAtIndexPath中取出单元格?

时间:2013-11-08 16:31:34

标签: objective-c uitableview

我想从cellForRowAtIndexPath:

中解决这个问题
cell.textLabel.textColor = [UIColor blueColor];

1 个答案:

答案 0 :(得分:0)

通过使用cellForRowAtIndexPath:对象调用NSIndexPath并将row设置为零来检索单元格,然后设置颜色。在IBAction方法中,请执行以下操作:

NSIndexPath *indexPath = [NSIndexPath indexPathForRow:0 inSection:0];
UITableViewCell *cell = [self.tableView cellForRowAtIndexPath:indexPath];

cell.textLabel.textColor = [UIColor blueColor];