我的swift APP有問題。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"
大概你在你的單元格上有一個標籤,並且你想對齊標籤中的文本,而不是整個單元格... – Wain
您是否閱讀過'UITableViewCell'的textAligment文檔:「Deprecation Statement instead instead分配給textLabel和detailTextLabel屬性的UILabel對象的文本對齊。「將這個對齊應用到想要的'UILabel',而不是單元格。 – Larme
我沒讀過。感謝您的意見。我解決它。 –