I'm trying to configure a TextRow to have:
- subtitle cellStyle
- multiline text label
Sample:
let textRow = TextRow() {
$0.tag = "TextRow"
$0.cellStyle = .subtitle
$0.title = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,"
$0.cell.textLabel?.numberOfLines = 0
}
But, as you can see, the layout is not correct; any help? Thanks
Sample source code here

The problem seems fixed now after this pull request