我想在表格视图中更改单元格的文字颜色。 如果我这样做,它就不起作用了。在xcode6 beta 1中它可以工作但是在xcode6的最终版本上它无效。
代码:
cellGrow.textColor = UIColor.whiteColor()
错误:'textColor' is unavailable: APIs deprecated as of iOS 7 and earlier are unavailable in Swift
答案 0 :(得分:2)
cellGrow是UITableViewCell吗?在这种情况下使用: -
cellGrow.textLabel?.textColor = UIColor.whiteColor()