iOS 使用Masnory实现TableViewCell高度自适应

_tableView.rowHeight = UITableViewAutomaticDimension;
// 设置预估行高
_tableView.estimatedRowHeight = 100;

然后在Cell中每个控件约束高度都要设置好,最下面的一个控件bottom要设置约束self.contentView.mas_bottom

你可能感兴趣的:(ios,objective-c)