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

ios - UITableViewCell中的自动布局约束不匹配

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

为动态单元格高度创建简单的应用程序。

我有自定义 UITableViewCell 并且我有一些控件。我已经修复了所有控件的约束。约束集后 Tableview 不显示任何错误。 Tableview 运行时单元格高度没问题,但是当我检查控制台日志时,它给了我如下所示的错误。

Make a symbolic breakpoint at UIViewAlertForUnsatisfiableConstraints to catch this in the debugger.
The methods in the UIConstraintBasedLayoutDebugging category on UIView listed in <UIKit/UIView.h> may also be helpful.
2017-06-08 17:54:22.184177+0530 Test[46461:306448] [LayoutConstraints] Unable to simultaneously satisfy constraints.
    Probably at least one of the constraints in the following list is one you don't want. 
    Try this: 
        (1) look at each constraint and try to figure out which you don't expect; 
        (2) find the code that added the unwanted constraint or constraints and fix it. 
(
    "<NSLayoutConstraint:0x600000286680 UILabel:0x7fe86bd1c4e0'Label'.height == 50   (active)>",
    "<NSLayoutConstraint:0x600000286810 V:|-(14)-[UILabel:0x7fe86bd1c4e0'Label']   (active, names: '|':UITableViewCellContentView:0x7fe86bd1c220 )>",
    "<NSLayoutConstraint:0x600000286860 V:[UILabel:0x7fe86bd1c4e0'Label']-(15)-|   (active, names: '|':UITableViewCellContentView:0x7fe86bd1c220 )>",
    "<NSLayoutConstraint:0x600000286cc0 'UIView-Encapsulated-Layout-Height' UITableViewCellContentView:0x7fe86bd1c220.height == 49   (active)>"
)

Will attempt to recover by breaking constraint 
<NSLayoutConstraint:0x600000286680 UILabel:0x7fe86bd1c4e0'Label'.height == 50   (active)>

Bellow 是我的 TableView 及其约束。 enter image description here

下面是我的 TableView 代码

- (CGFloat)tableViewUITableView *)tableView heightForRowAtIndexPathNSIndexPath *)indexPath {
    return UITableViewAutomaticDimension;
}
- (UITableViewCell *)tableViewUITableView *)tableView cellForRowAtIndexPathNSIndexPath *)indexPath {
    CustomCell *cell = [tableView dequeueReusableCellWithIdentifier"cell" forIndexPath:indexPath];
    NSString * strAction = arrActionList[indexPath.row];
    if ([strAction isEqualToString"More"]) {
        cell.lblActionHeight.constant = 50;
    }
    else{
        cell.lblActionHeight.constant = 20;
    }
    cell.lblAction.text = strAction;
    [cell.contentView layoutIfNeeded];
    return cell;
}

提前致谢。



Best Answer-推荐答案


如果你不想给出高度限制,你应该给出顶部、底部、前导、尾随。

如果你需要高度限制,那么你应该给 (leading,trailing,top,height) 或 (leading,trailing,centerY,height)

确保在 heightForRow 方法中返回正确的高度。

如果你想使用UITableViewAutomaticDimension

,你需要指定估计的行高

在您的情况下,estimatedRow 高度是 IB 中的确切行高。

关于ios - UITableViewCell中的自动布局约束不匹配,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44436336/

回复

使用道具 举报

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

本版积分规则

关注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