gpt4 book ai didi

swift - 无法通过 ID 找到约束

转载 作者:行者123 更新时间:2023-11-28 14:04:03 25 4
gpt4 key购买 nike

我有一个带有 Center X Alignment Constraint 的按钮,这个约束的 identifier"constBtnSound"

我正在尝试使用以下代码获取此约束但无法找到它

for const in btnSound.constraints {
if const.identifier == "constBtnSound" {
...
}
}

约束的属性:

enter image description here

按钮的所有约束:

enter image description here

最佳答案

这是the UIView.addConstraint documentation说:

The constraint must involve only views that are within scope of the receiving view. Specifically, any views involved must be either the receiving view itself, or a subview of the receiving view.

因为 button.superview 不是 button 也不是 button 的 subview ,所以约束不能按钮持有。

因为 buttonbutton.superview 的 subview ,可以button.superview 持有约束(或 button.superview 的任何祖先)。

但是,您可以为它创建一个导出,而不是通过 id 搜索约束:

@IBOutlet var buttonXCenterConstraint: NSLayoutConstraint!

将导出连接到 Storyboard中的约束。

关于swift - 无法通过 ID 找到约束,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53210799/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com