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

ios - Storyboard中的自定义 tableViewCell 在 iOS8.1 中失去了自动布局约束

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

问题是我可以得到我的自定义 UITableViewCell(自定义背景颜色已更改), 但其中的约束都丢失了。

ps。我正在使用 Xcode 6.1.1。

我想得到正确的高度值,但约束都丢失了。

- (CGFloat)tableViewUITableView *)tableView heightForRowAtIndexPathNSIndexPath *)indexPath

        static HomeMainNewsCell *mainCell = nil;

        static dispatch_once_t onceToken;
        dispatch_once(&onceToken, ^{
            mainCell = [self.tableView dequeueReusableCellWithIdentifier"HomeMainNewsCell"];
        });
        [mainCell.titleLabel setText"dsfjsdhfjsasdfsdfdsfsdfsdfsdfk"];
        [mainCell layoutIfNeeded];

        CGFloat height = [mainCell.contentView systemLayoutSizeFittingSize:UILayoutFittingCompressedSize].height;
        return height;
}

这是日志

 po [mainCell.contentView constraints]
<__NSArrayM 0x7fe05b745c10>(

)

这是 Storyboard截图

enter image description here

添加信息

删除heightForRowAtIndexPath方法后,iOS8.1显示完美。

但在 iOS7.1 中,它显示为每个单元格的高度值为 44。并且约束都回来了。

po [mainCell.contentView constraints]
<__NSArrayM 0x78e50f20>(
<NSLayoutConstraint:0x78e52a10 UILabel:0x78e524d0.trailing == UITableViewCellContentView:0x78e52230.trailing - 8>,
<NSLayoutConstraint:0x78e52a40 V:[UILabel:0x78e524d0]-(17)-|   (Names: '|':UITableViewCellContentView:0x78e52230 )>,
<NSLayoutConstraint:0x78e52a70 H:|-(8)-[UILabel:0x78e524d0]   (Names: '|':UITableViewCellContentView:0x78e52230 )>,
<NSLayoutConstraint:0x78e52aa0 V:[UILabel:0x78e52380]-(9)-[UILabel:0x78e524d0]>,
<NSLayoutConstraint:0x78e52ad0 UILabel:0x78e52380.trailing == UITableViewCellContentView:0x78e52230.trailing - 8>,
<NSLayoutConstraint:0x78e52b00 V:[UIImageView:0x78e522d0]-(9)-[UILabel:0x78e52380]>,
<NSLayoutConstraint:0x78e52b30 H:|-(8)-[UILabel:0x78e52380]   (Names: '|':UITableViewCellContentView:0x78e52230 )>,
<NSLayoutConstraint:0x78e52b60 H:|-(0)-[UIImageView:0x78e522d0]   (Names: '|':UITableViewCellContentView:0x78e52230 )>,
<NSLayoutConstraint:0x78e52b90 H:[UIImageView:0x78e522d0]-(0)-|   (Names: '|':UITableViewCellContentView:0x78e52230 )>,
<NSLayoutConstraint:0x78e52bc0 V:|-(0)-[UIImageView:0x78e522d0]   (Names: '|':UITableViewCellContentView:0x78e52230 )>
)



Best Answer-推荐答案


最后,我找到了一个完美的解决方案。

这个问题的原因是在 iOS8 中使用 tableView.rowHeight = UITableViewAutomaticDimension 和自动布局,它比以前工作得更好。

解决方案的帖子来自这里。

http://www.raywenderlich.com/forums/viewtopic.php?f=2&t=18517

这个解决方案太酷了~~感谢人们对这个问题的评论。

关于ios - Storyboard中的自定义 tableViewCell 在 iOS8.1 中失去了自动布局约束,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27438253/

回复

使用道具 举报

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

本版积分规则

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