2014-02-22 75 views

回答

1

在這裏,下面的代碼將幫助您

- (void)tableView: (UITableView*)tableView willDisplayCell: (UITableViewCell*)cell forRowAtIndexPath: (NSIndexPath*)indexPath 
{ 
    if(indexPath.row % 4 == 0) 
     cell.textLabel.textColor =[UIColor redColor]; 
    else if(indexPath.row % 4 == 1) 
     cell.textLabel.textColor =[UIColor blueColor]; 
    else if (indexPath.row % 4 == 2) 
     cell.textLabel.textColor =[UIColor yellowColor]; 
    else if (indexPath.row % 4 == 2) 
     cell.textLabel.textColor =[UIColor greenColor]; 
} 
0

您需要一些代碼來決定如何選擇顏色。這可以是索引路徑行的數組和顏色(%)以選擇數組中的索引。然後您想要使用標籤的textColorattributedText屬性來設置(歸屬)包括顏色的文本。

相關問題