所以我有一堂课:
class BoatTypeGame: UITableViewController
表格视图有 14 行。从第 1-7 行开始,我想制作文本的颜色,green
对于第 8-14 行,我想制作文本的颜色red
。顺便说一句,每次加载视图时单元格不会有相同的文本;我使用该arc4random_uniform()
方法随机化文本。谢谢!
所以我有一堂课:
class BoatTypeGame: UITableViewController
表格视图有 14 行。从第 1-7 行开始,我想制作文本的颜色,green
对于第 8-14 行,我想制作文本的颜色red
。顺便说一句,每次加载视图时单元格不会有相同的文本;我使用该arc4random_uniform()
方法随机化文本。谢谢!
在您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
}