我有几个UITableViewCell
有自定义按钮的。这些按钮覆盖了一些单元格中的文本。如何设置textLabel
单元格内属性的宽度,以免发生这种情况?这似乎不起作用。
cell.textLabel.font = UIFont.boldSystemFontOfSize(16)
cell.textLabel.adjustsFontSizeToFitWidth = true
cell.textLabel.numberOfLines = 0
cell.textLabel.lineBreakMode = UILineBreakModeWordWrap
cell.textLabel.preferredMaxLayoutWidth = 200
我在tableView(table_view, willDisplayCell:cell, forRowAtIndexPath:index_path)
方法中运行它。
此时设置框架也不起作用。