• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

ios - Objective C Table Cell ContentView View 层次结构没有为约束准备

[复制链接]
菜鸟教程小白 发表于 2022-12-11 16:45:20 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

Storyboard

我添加了一个带有 Storyboard的标签,我在表格中有一个标签(约束顶部:10 左:0 右:0)。根据状态,如果要创建图像并添加约束,我会收到此错误:

2016-06-17 16:02:59.235 Cellin[3748:162565] *** 
Terminating app due to uncaught exception 
'NSInvalidArgumentException', reason: '*** +[NSLayoutConstraintconstraintWithItem:attribute:relatedBy:toItem:attribute:multiplier:constant:]: Constraint must contain a first layout item'

解决了这个缺少 IBOUTLET 的错误; 新错误:

The view hierarchy is not prepared for the constraint: <NSLayoutConstraint:0x7fce22494cf0 V:[UILabel:0x7fce22490340'Hello']-(50)-[UIImageView:0x7fce226636c0]>
    When added to a view, the constraint's items must be descendants of that view (or the view itself). This will crash if the constraint needs to be resolved before the view hierarchy is assembled. Break on -[UIView(UIConstraintBasedLayout) _viewHierarchyUnpreparedForConstraint:] to debug.
2016-06-17 16:17:14.152 Cellin[3889:170014] *** Assertion failure in -[UITableViewCellContentView 

我的表代码

-(UITableViewCell *)tableViewUITableView *)tableView cellForRowAtIndexPathNSIndexPath *)indexPath{
    TableCellController *cell = [tableView dequeueReusableCellWithIdentifier"Cell"];
    cell.TLabel.text = [arr objectAtIndex:indexPath.row];
    if(true){
        UIImageView *images = [[UIImageView alloc] init];
        [images setTranslatesAutoresizingMaskIntoConstraints:NO];
        [cell.contentView addSubview:images];
        images.image = [UIImage imageNamed"image.png"];

        NSLayoutConstraint *TComp = [NSLayoutConstraint constraintWithItem:cell.TLabel attribute:NSLayoutAttributeBottom relatedBy:NSLayoutRelationEqual toItem:images attribute:NSLayoutAttributeTop multiplier:1.0 constant:50.0];

        [cell.contentView addConstraint:TComp];
    }
    return cell;
}



Best Answer-推荐答案


约束必须包含第一个布局项清楚地表明您在此调用中缺少 firstItem

NSLayoutConstraint *TComp = [NSLayoutConstraint constraintWithItem:cell.TLabel attribute:NSLayoutAttributeBottom relatedBy:NSLayoutRelationEqual toItem:images attribute:NSLayoutAttributeTop multiplier:1.0 constant:50.0];

也许您需要检查 cell.TLabel 是否正确加载。缺少 IBOutlet 吗?

关于ios - Objective C Table Cell ContentView View 层次结构没有为约束准备,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37882354/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap