使用Swift更改文本颜色

时间:2014-10-17 11:15:54

标签: text swift colors ios8 xcode6

我想在表格视图中更改单元格的文字颜色。 如果我这样做,它就不起作用了。在xcode6 beta 1中它可以工作但是在xcode6的最终版本上它无效。

代码:

cellGrow.textColor = UIColor.whiteColor()

错误:'textColor' is unavailable: APIs deprecated as of iOS 7 and earlier are unavailable in Swift

1 个答案:

答案 0 :(得分:2)

cellGrow是UITableViewCell吗?在这种情况下使用: -

cellGrow.textLabel?.textColor = UIColor.whiteColor()