自定义UITableViewCell中有一个view1(UIView)我需要在AutoLayout之后使用新的view1(UIView)大小
UITableViewCell内容是动态的,因此我使用UITableViewAutomaticDimension进行自我调整大小
我也使用以下方法,但我得到原始大小。扩展后我无法获得view1(UIView)的新大小
[self.tblView1 setNeedsLayout];
[self.tblView1 layoutIfNeeded];
[cell.contentView setNeedsLayout];
[cell.contentView layoutIfNeeded];
[cell.view1 setNeedsLayout];
[cell.view1 layoutIfNeeded];