gpt4 book ai didi

ios - 为什么这个对象创建循环会产生同时约束错误?

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

class ViewController: UIViewController {

let manImage = UIImage(named: "man.png")

var buttons = Array(count: 5, repeatedValue: UIButton())

override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.

createButtons()
}

override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}

func createButtons() {
for index in 0...4 {
buttons[index].setBackgroundImage(manImage, forState: .Normal)
self.view.addSubview(buttons[index])
self.view.addConstraint(NSLayoutConstraint(
item: buttons[index],
attribute: .CenterX,
relatedBy: .Equal,
toItem: view,
attribute: .CenterX,
multiplier: 1,
constant: 0))
}
}
}

我收到 Unable to simultaneously satisfy constraints. 错误。为什么会发生这种情况,是否有解决此问题的建议?

谢谢。

我不知道还能说什么,但 Stack 要求提供更多文本。

最佳答案

您的 buttons 数组包含四个对 UIButton 实例的引用。试试这个:

let buttons = (0..<4).map({_ in UIButton()})

此外,您可能需要在每个按钮上设置 translatesAutoresizingMaskIntoConstraints = false

关于ios - 为什么这个对象创建循环会产生同时约束错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39796119/

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