Swift设置自动行高
Posted 小课桌
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Swift设置自动行高相关的知识,希望对你有一定的参考价值。
1 // 设置行高自适应 2 tableView.rowHeight = UITableViewAutomaticDimension 3 4 // 设置预估行高 5 tableView.estimatedRowHeight = 200
1 // 底部的toolBar 2 toolBar.snp_makeConstraints { (make) in 3 make.top.equalTo(originalView.snp_bottom) 4 make.leading.trailing.equalTo(originalView) 5 make.height.equalTo(35) 6 7 // 关键约束 8 make.bottom.equalTo(contentView.snp_bottom) 9 } 10 11 // 要麽全部指定,要麽全部不指定 12 contentView.snp_makeConstraints { (make) in 13 make.top.left.right.bottom.equalTo(self) 14 }
以上是关于Swift设置自动行高的主要内容,如果未能解决你的问题,请参考以下文章
无法更改 TableViewCells 的行高 - Swift [重复]