我的快速APP有问题。
在我编写的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"
答案 0 :(得分:10)
使用 Swift 4 的人的正确答案是:
cell.textLabel?.textAlignment = .center
答案 1 :(得分:2)
仅当您的UITableViewCell
样式为default
时才有效
Swift 4.1
cell = UITableViewCell(style: UITableViewCellStyle.default, reuseIdentifier: "DefaultCell")
cell.textLabel?.textAlignment = .center
答案 2 :(得分:0)
试试这个
MyLabel1.textAlignment = NSTextAlignment.Center
答案 3 :(得分:0)