gpt4 book ai didi

Swift:在初始化期间以编程方式添加按钮而不提供框架

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

假设我想以编程方式添加一个UIBUtton。每个 UIView 构造函数都需要一个 CGFrame,但在我的例子中,我希望大小是固有的,并且位置要锚定到 super View 的中心。

  • 如果我在不提供框架的情况下实例化 UIBUtton 元素,我会在调试 View 层次结构中看到它,但不会在屏幕上看到它。
  • 如果我提供一个框架,我基本上会猜测大小和 x,y 值会限制我稍后添加的约束。

以编程方式添加按钮的正确方法是什么?

谢谢!

编辑:没有CGFrame 实例化没有问题。我没有看到按钮,因为我没有添加

button.translatesAutoresizingMaskIntoConstraints = false

这是由界面构建器自动完成的。

最佳答案

如果您使用自动布局,请将 translateAutoResizingMaskIntoConstraints 设置为 false 并忽略框架,但不要忘记手动添加约束。

这是一个简单的例子:

override func viewDidLoad() {
super.viewDidLoad()
// no auto layout
let v = UIView(frame: CGRect(x: 0, y: 0, width: 100, height: 100))
v.backgroundColor = UIColor.blue
view.addSubview(v)
// with auto layout
let v2 = UIView()
v2.backgroundColor = UIColor.red
// use auto layout
v2.translatesAutoresizingMaskIntoConstraints = false
// add width / height constraints
v2.addConstraint(NSLayoutConstraint(item: v2, attribute: .width, relatedBy: .equal, toItem: nil, attribute: .notAnAttribute, multiplier: 1, constant: 100))
v2.addConstraint(NSLayoutConstraint(item: v2, attribute: .height, relatedBy: .equal, toItem: nil, attribute: .notAnAttribute, multiplier: 1, constant: 100))
// must add to hirarchy before adding the following constraints
view.addSubview(v2)
view.addConstraint(NSLayoutConstraint(item: v2, attribute: .leading, relatedBy: .equal, toItem: view, attribute: .leading, multiplier: 1, constant: 100))
view.addConstraint(NSLayoutConstraint(item: v2, attribute: .top, relatedBy: .equal, toItem: view, attribute: .top, multiplier: 1, constant: 0))
// auto layout, visual format
let v3 = UIView()
v3.translatesAutoresizingMaskIntoConstraints = false
v3.backgroundColor = UIColor.green
let views = [ "v3" : v3 ]
// must add v3 as subview before adding constraints referencing the parent view
view.addSubview(v3)
view.addConstraints(NSLayoutConstraint.constraints(withVisualFormat: "H:|-200-[v3(100)]", options: [], metrics: nil, views: views))
view.addConstraints(NSLayoutConstraint.constraints(withVisualFormat: "V:|-0-[v3(100)]", options: [], metrics: nil, views: views))
}

对于许多 View ,不需要指定大小,因为一些 View 使用 intrinsicContentSize 提供了它们想要的大小。
您可以将其用于按钮,使它们采用它们“需要”的尺寸,或使用约束强制使用其他尺寸。
对于自定义 View - 您可以覆盖此属性以提供您自己的“所需大小”逻辑。

关于Swift:在初始化期间以编程方式添加按钮而不提供框架,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41791052/

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