What\'s the best way to have UITableView cells with multiple lines ? Let\'s say 5.. or 6 ?
Instead of textLabel and la detailTextLabel ? Should I create a custom sty
cell.textLabel.numberOfLines = 0
together with
tableView.rowHeight = UITableView.automaticDimension
Does work but only if the number of lines is limited (2-3 lines).
What I had to do as well was embed the cell fields in a StackView
. That made all the difference. Now I can display as many lines as I want.