gpt4 book ai didi

ios - View Controller 不遵守 XIB 自动调整大小掩码

转载 作者:行者123 更新时间:2023-12-01 22:00:27 24 4
gpt4 key购买 nike

CustomUIView: UIView 类型的 XIB 中创建了 UIView 子类.它包含多个导出,每个导出都使用自动调整大小(不是自动布局)。

enter image description here
enter image description here
enter image description here

这个 XIB 的 View 是这样加载的:

// In CustomUIView class

// Initializer used by Interface Builder.
required init?(coder: NSCoder) {
super.init(coder: coder)
initialize()
}

func initialize() {
// Load the view
let contentView = // typical func to load view from NIB. Owner argument is self.
addSubview(contentView)
}

这个 CustomUIView 像这样添加到 View Controller 中:
enter image description here

问题是 View Controller 的 View 不遵守 XIB 中定义的自动调整参数。

enter image description here

现在,理论上可以将 View Controller 的 View 告诉 clip to bounds但这不是一个适当的解决方案。我错过了什么?

最佳答案

感谢@donmag 间接指出解决方案。

这是作者没有@donmag 所拥有的。

autoresize 掩码需要转换为约束:

  • 单击您的 XIB View 。
    enter image description here
  • 将布局属性更改为“将掩码转换为约束”。
    enter image description here
  • 关于ios - View Controller 不遵守 XIB 自动调整大小掩码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60158214/

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