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
Since Swift 3:
func allowMultipleLines(tableViewCell: UITableViewCell) { tableViewCell.textLabel?.numberOfLines = 0 tableViewCell.textLabel?.lineBreakMode = .byWordWrapping }