纯属个人记录
习惯在xib中使用autolayout,要实现tableViewCell自适应只需两句代码:
self.tableView.estimatedRowHeight = 80.0 //设置一个默认高度
self.tableView.rowHeight=UITableViewAutomaticDimension //开启自适应
纯属个人记录
习惯在xib中使用autolayout,要实现tableViewCell自适应只需两句代码:
self.tableView.estimatedRowHeight = 80.0 //设置一个默认高度
self.tableView.rowHeight=UITableViewAutomaticDimension //开启自适应