Maison > Questions et réponses > le corps du texte
大家好,我要做一个超出一屏的页面,在storyboard上用了scrollview,scrollview底部有个tableview,现在scrollview和tableview的高度都不确定,我就随便添加了一个固定的高度约束,想在updateViewConstraints()里在更新这两个约束的大小。
到目前为止正常,但是在tableview这里用了estimatedRowHeight 预估高度自适应,每个cell的高度也正常,但是在updateViewConstraints()方法里获取所有cell的高度的时候却不能娶到正确的值
UITableViewCell *cell = [self tableView:self.commentTableView cellForRowAtIndexPath:indexPath];
height+= cell.frame.size.height;
height的值不正确!请问这样使用有哪些问题?或者有没有更好的方法?
thanks!