iOS: UITableView cells with multiple lines?

后端 未结 5 1389
既然无缘
既然无缘 2020-12-23 21:42

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

5条回答
  •  鱼传尺愫
    2020-12-23 21:57

    Since Swift 3:

    func allowMultipleLines(tableViewCell: UITableViewCell) {
        tableViewCell.textLabel?.numberOfLines = 0
        tableViewCell.textLabel?.lineBreakMode = .byWordWrapping
    }
    

提交回复
热议问题