2

那里有任何使用 XLForm 的专业人士,并且对如何配置单元格以使其textLabel.numberOfLines可以更改为 2 有任何想法吗?我有一个很长的字符串,不能放在 1 行中。

任何建议或想法都非常感谢!非常感谢您提前!!!=D

4

2 回答 2

2

似乎这样做了:

[self.row.cellConfigAtConfigure setObject:@(3) forKey:@"textLabel.numberOfLines"];
于 2014-09-11T05:12:32.037 回答
0

这对我有用:

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"
        }
于 2016-03-04T09:57:28.790 回答