我有一个简单的垂直UIStackView
,在第3个子视图中,我想以编程方式创建UIButton
。我可以这样做,但按钮正在扩展到子视图的整个宽度和高度,而不是我在代码中设置它的大小。我已经使用故事板创建了UIStackView
,但我以编程方式添加此按钮,以便更好地控制按钮的外观。
let doThisButton = UIButton(frame: CGRect(x: 0, y: 0, width: 50, height: 40))
doThisButton.setTitle("Let's do this.", forState: .Normal)
doThisButton.setTitleShadowColor(UIColor.blackColor(), forState: .Highlighted)
doThisButton.translatesAutoresizingMaskIntoConstraints = false
doThisButton.layer.cornerRadius = 3
doThisButton.layer.backgroundColor = UIColor(hexString: "b7b7b7").CGColor
doThisButton.layer.borderWidth = 0
liftLogStackView.addArrangedSubview(doThisButton)
在Apple的文档中,我发现UILayoutGuide
似乎可能有用,但现在我不这么认为。我试过这个:
let container = UILayoutGuide()
doThisButton.addLayoutGuide(container)
doThisButton.leadingAnchor.constraintEqualToAnchor(container.leadingAnchor, constant: 8.0).active = true
doThisButton.trailingAnchor.constraintEqualToAnchor(container.trailingAnchor, constant: 8.0).active = true
liftLogStackView.addArrangedSubview(doThisButton)
container.leadingAnchor.constraintEqualToAnchor(margins.leadingAnchor).active = true
并没有任何区别。
很多SO搜索都没有找出特定于我的问题的答案,所以我希望有人可以提供帮助。提前谢谢。
答案 0 :(得分:0)
您需要更改UIStackView
的对齐方式。默认情况下,它设置为子视图将填充垂直于轴的尺寸。在你的情况下,宽度。
liftLogStackView.alignment = .center
这将适用于UIStackView
中可能不是您想要的所有子视图。在这种情况下,只需将该按钮添加为另一个UIView
中的子视图,然后将该视图添加到UIStackView
。然后,您的新视图将是全宽视图,但您可以将按钮限制为您想要的任何大小。
另外,我建议阅读UIStackView
Documentation。关于如何设置布局,有很多有用的信息。
答案 1 :(得分:0)
另一种解决方案是将此UIButton
打包到UIView
。然后UIView
将延伸并占据所需的所有位置。 UIButton
将保持您定义的大小。现在,您可以根据容器视图定义约束。
我做了一个简短的游乐场示例:
import UIKit
import PlaygroundSupport
class TestViewController : UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
title = "Test"
self.view.frame = CGRect(x: 0, y: 0, width: 320, height: 480)
self.view.backgroundColor = UIColor.brown
let stackview = UIStackView(frame: CGRect(x: 0, y: 0, width: 320, height: 480))
stackview.axis = .vertical
stackview.distribution = UIStackViewDistribution.fillEqually
let text = UILabel(frame: CGRect(x: 0, y: 0, width: 200, height: 20))
text.text = "Hello, i am a label"
text.backgroundColor = UIColor.green
let containerView = UIView(frame: CGRect(x: 0, y: 0, width: 320, height: 100))
containerView.backgroundColor = UIColor.red
containerView.addSubview(text)
stackview.addArrangedSubview(containerView)
let text2 = UILabel(frame: CGRect(x: 0, y: 0, width: 100, height: 20))
text2.text = "Hello, i am another label"
text2.backgroundColor = UIColor.orange
stackview.addArrangedSubview(text2)
self.view.addSubview(stackview)
}
}
let testController = TestViewController()
PlaygroundPage.current.liveView = testController.view
testController