我是iOS的新手,我在自定义tableview上设置约束时遇到问题。我在图像中使用了两个标签
但是在约束之后它也给了我差距
我找到了解决方案但无法理解并在此处申请。
//Assign Table View Hight...
closetableview.estimatedRowHeight = 80;//the estimatedRowHeight but if is more this autoincremented with autolayout
closetableview.rowHeight = UITableViewAutomaticDimension;
[closetableview setNeedsLayout];
[closetableview layoutIfNeeded];
closetableview.contentInset = UIEdgeInsetsMake(0, 0, 0, 0) ;
closetableview.tableFooterView = [[UIView alloc] initWithFrame:CGRectZero];
我已经在viewDidLoad中编写了这样的代码。