【问题标题】:Constraint bug with UITableViewAutomaticDimensionUITableViewAutomaticDimension 的约束错误
【发布时间】:2018-05-19 18:03:29
【问题描述】:

我很难使用动态高度自定义 tableView 单元格。

所以我收到 “无法同时满足约束。” 警告(但有时,比如千分之一)


我认为UITableViewAutomaticDimension 给出了问题。 在示例中,它需要 88.3333 高度,但可能不正确。 (但大多数时候它有效,我不明白发生了什么)

我做错了什么,有人可以帮忙吗?什么都试过了。。

代码:

var cellHeights: [IndexPath : CGFloat] = [:]
    func tableView(_ tableView: UITableView, willDisplay cell: UITableViewCell, forRowAt indexPath: IndexPath) {
        cellHeights[indexPath] = cell.frame.size.height

        if indexPath.row == UserWorldMessagesStore.shared.worldMessages.count - 1 && userWorldMessagesCanLoadMore == true {
            loadOlderOwnWorldMessages()
        }
    }
    func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
        return UITableViewAutomaticDimension
    }
    func tableView(_ tableView: UITableView, estimatedHeightForRowAt indexPath: IndexPath) -> CGFloat {
        if cellHeights[indexPath] != nil {
            return CGFloat(Float(cellHeights[indexPath] ?? 0.0))
        }
        else {
            return UITableViewAutomaticDimension
        }
    }

警告:

2018-05-19 19:58:54.879876+0200 PipeTest[3378:1282243] [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:0x1c0297fc0 V:|-(10)-[UILabel:0x125d5db40'Heyy']   (active, names: '|':UIView:0x125d03400 )>",
    "<NSLayoutConstraint:0x1c0298010 V:[UILabel:0x125d5db40'Heyy']-(10)-|   (active, names: '|':UIView:0x125d03400 )>",
    "<NSLayoutConstraint:0x1c0298100 PipeTest.profilePictureImageView:0x125d56fc0.height == 22   (active)>",
    "<NSLayoutConstraint:0x1c0298240 UIView:0x125e58150.height == 27   (active)>",
    "<NSLayoutConstraint:0x1c0298600 PipeTest.profilePictureImageView:0x125d56fc0.top == UITableViewCellContentView:0x125d50850.topMargin   (active)>",
    "<NSLayoutConstraint:0x1c02986a0 V:[PipeTest.profilePictureImageView:0x125d56fc0]-(3)-[UIView:0x125d03400]   (active)>",
    "<NSLayoutConstraint:0x1c02988d0 UIView:0x125e58150.bottom == UITableViewCellContentView:0x125d50850.bottomMargin   (active)>",
    "<NSLayoutConstraint:0x1c0298970 V:[UIView:0x125d03400]-(7)-[UIView:0x125e58150]   (active)>",
    "<NSLayoutConstraint:0x1c0299230 'UIView-Encapsulated-Layout-Height' UITableViewCellContentView:0x125d50850.height == 88.3333   (active)>"
)

【问题讨论】:

  • 是 iOS 还是 macOS?请添加标签。
  • 当您说“动态高度自定义单元格”时,您只是指自定大小的单元格吗?

标签: ios swift autolayout tableview constraints


【解决方案1】:

完整的警告文本应包含类似

的内容
Will attempt to recover by breaking constraint  
<NSLayoutConstraint:somePointer V:some constraint>

将该约束的优先级降低到999 应该会消除此警告。

原因就在那一行:

<NSLayoutConstraint:0x1c0299230 'UIView-Encapsulated-Layout-Height' UITableViewCellContentView:0x125d50850.height == 88.3333   (active)>

这是一个系统提供的约束,它告诉表格视图单元格的高度应该是多少,它的值基于您从estimatedHeightForRowAt 返回的内容。在计算正确的单元格大小之前会引发警告(最终会正确计算),因此降低其他约束的优先级是安全的,因此系统提供的优先级优先。

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2018-03-11
    • 2018-01-20
    • 1970-01-01
    • 1970-01-01
    • 2019-12-30
    • 1970-01-01
    相关资源
    最近更新 更多