我的Swift应用程序有问题。
在我的TableViewCell函数中,我编写了

let cell = tableView.dequeueReusableCellWithIdentifier("Cell", forIndexPath:indexPath) as MyCell
cell.setMyCell(self.data[0]["content"]!)

如果我写信
cell.textAlignment red line appear and say "textAlignment in unavailable: API deprecated"

最佳答案

使用Swift 4的人的正确答案是:

cell.textLabel?.textAlignment = .center

10-06 03:13