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

时间:2017-01-22 12:45:56

标签: swift uiview constraints add programmatically

假设我想以编程方式添加UIBUtton。每个UIView构造函数都需要CGFrame,但在我的情况下,我希望大小是内在的,并且要将位置锚定到超级视图的中心。

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

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

谢谢!

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

button.translatesAutoresizingMaskIntoConstraints = false

由接口构建器自动完成。

1 个答案:

答案 0 :(得分:1)

如果您使用自动布局,请将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))
}

对于许多观看次数,无需指定尺寸,因为有些观看次数可以intrinsicContentSize提供他们想要的尺寸。
您可以将其用于按钮,使其达到所需的尺寸,或使用约束强制使用其他尺寸。
对于自定义视图 - 您可以覆盖此属性以提供您自己所需的大小'逻辑。