那里有任何使用 XLForm 的专业人士,并且对如何配置单元格以使其textLabel.numberOfLines
可以更改为 2 有任何想法吗?我有一个很长的字符串,不能放在 1 行中。
任何建议或想法都非常感谢!非常感谢您提前!!!=D
似乎这样做了:
[self.row.cellConfigAtConfigure setObject:@(3) forKey:@"textLabel.numberOfLines"];
这对我有用:
form +++= TextRow() {
$0.cell.textLabel?.numberOfLines = 0
$0.title = "Some long string that doesn't fit iPhone 5 screen width"
$0.placeholder = "Provide your answer"
}