天天看點

cell根據文本标簽内容自适應高度

cell裡面的label不能有固定高度,隻能添加上下左右的限制,并且隻能存在唯一一個這樣設定的label,可以有其他view,但其他view需要有明确的高度

label需要屬性numberOfLines = 0 和adjustsFontSizeTofitWidth = true

代理設定:

func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
               return UITableViewAutomaticDimension
    }
           

tableview設定:

tb_rule.rowHeight = UITableViewAutomaticDimension
tb_rule.estimatedRowHeight = 80