ios – 如何在两个自动布局约束之间切换?

前端之家收集整理的这篇文章主要介绍了ios – 如何在两个自动布局约束之间切换?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有两个UI布局约束,它们在设计上相互冲突.一次只能有一个活跃.

在UIViewController的方法updateConstraintsIfNeeded中,我有以下代码在两个约束之间切换,具体取决于数据模型的状态.

override func updateConstraintsIfNeeded() {
    super.updateConstraintsIfNeeded()

    if question?.thumbURL != nil {
        showAttachmentConstraint.active = true
        hideAttachmentConstraint.active = false        
    } else {
        showAttachmentConstraint.active = false
        hideAttachmentConstraint.active = true
    }
}

这项工作按计划进行,但我在调试输出中得到了这个熟悉的警告:

Unable to simultaneously satisfy constraints. Probably at least one of the constraints in the following list is one you don’t want. …

显然当执行语句showAttachmentConstraint.active = true时,它暂时与当时仍处于活动状态的hideAttachmentConstraint冲突.

是否可以将此切换操作原子化?我希望在UITableView中有类似beginUpdate和endUpdate的东西.

解决方法

您可以将其中一个冲突约束的优先级更改为999而不是1000.因此您在设计时甚至没有任何问题.
原文链接:https://www.f2er.com/iOS/331969.html

猜你在找的iOS相关文章