-1

所以我有一堂课:

class BoatTypeGame: UITableViewController

表格视图有 14 行。从第 1-7 行开始,我想制作文本的颜色,green对于第 8-14 行,我想制作文本的颜色red。顺便说一句,每次加载视图时单元格不会有相同的文本;我使用该arc4random_uniform()方法随机化文本。谢谢!

4

1 回答 1

0

在您cellForRowAtIndexPath甚至tableViewWillDisplayCell只是使用 switch 语句或 if 语句。

switch indexPath.row {
case 1...7:
    println("row 1-7")
    cell.textLabel?.textColor = UIColor.greenColor()
case 8...14:
    println("row 8-14")
    cell.textLabel?.textColor = UIColor.redColor()
default:
    break
}
于 2014-12-14T17:49:12.260 回答