我有一个自定义单元&我正在尝试更新子视图的约束,如下所示:
CustomeCell.m
-(void)layoutSubviews
{
[super layoutSubviews];
_con_view_width.constant = _lbl_property.frame.size.width;
if(!_btn_imageCount.isHidden)
_con_view_width.constant = _lbl_property.frame.size.width + _btn_imageCount.frame.size.width;
NSLog(@"%@",NSStringFromCGRect(_view_lbl_btn.frame));
[_view_lbl_btn updateConstraintsIfNeeded];
NSLog(@"%@",NSStringFromCGRect(_view_lbl_btn.frame));
}
问题 只有在滚动
后重新加载行时,约束才有效答案 0 :(得分:8)
而不是updateConstraintsIfNeeded尝试layoutIfNeeded。我认为它会工作,你的代码应该是这样的。
-(void)layoutSubviews
{
[super layoutSubviews];
_con_view_width.constant = _lbl_property.frame.size.width;
if(!_btn_imageCount.isHidden)
_con_view_width.constant = _lbl_property.frame.size.width + _btn_imageCount.frame.size.width;
NSLog(@"%@",NSStringFromCGRect(_view_lbl_btn.frame));
[_view_lbl_btn layoutIfNeeded];
NSLog(@"%@",NSStringFromCGRect(_view_lbl_btn.frame));
}
编辑:如果您在自定义单元格类中执行此操作,则需要在索引路径的行中为单元格添加一行。
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"Cell" forIndexPath:indexPath];
//[cell layoutIfNeeded];
[cell layoutSubviews];
return cell;
}
答案 1 :(得分:1)
尝试更新用于在数据源委派中将单元格返回到tableview的方法中的约束,而不是单元格中的方法layoutSubviews。
并且在更新约束之前调用cell.contentView.layoutIfNeeded()
,这些约束将单元格设置为默认宽度和高度(320,44基于设备),以防您可以获得宽度。在委托返回到tableview之后的单元格。如果你设置了一些直接或相对改变大小的约束,那么单元格大小将由tableview更新(框架适合你)。