在我的UITableView中我有7个tableviewcell,我只想更改第5个单元格的textcolor。这可能吗?
我试过静态细胞,但它不适合我,因为我只想要一个cell.textlable.textcolor改变而不是其他细胞。
答案 0 :(得分:0)
使用像这样的东西
if(indexPath.row==4)
{
yourCell.textLabel.textColor=[UIColor redColor];
}
else
{
yourCell.textLabel.textColor = [UIColor blackColor];
}
答案 1 :(得分:0)
if([cell.m_mainListLbl.text isEqualToString:@"Logout"])
{
cell.m_mainListLbl.textColor=[UIColor redColor]; return cell;
}
我使用了这段代码。 它对我有用。