标签:
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
[cell setNeedsUpdateConstraints];
[cell updateConstraintsIfNeeded];
CGSize size = [self.prototypeCell.contentView systemLayoutSizeFittingSize:UILayoutFittingCompressedSize];
return size.height+1;
}
tableviewcell 中使用autolayout自适应高度
标签:
原文地址:http://www.cnblogs.com/zj901203/p/4277562.html