gpt4 book ai didi

ios - 以编程方式位于底部的按钮

转载 作者:行者123 更新时间:2023-12-05 08:55:34 26 4
gpt4 key购买 nike

我正在尝试使用这个库:

https://github.com/yannickl/DynamicButton#requirements

我需要以编程方式 (Swift) 将底部放在我的 ViewController 底部,底部和按钮之间有一点距离。我该怎么做?

最佳答案

使用自动布局

self.view.addSubview(button)

button.translatesAutoresizingMaskIntoConstraints = false

button.centerXAnchor.constraint(equalTo: self.view.centerXAnchor).isActive = true
button.widthAnchor.constraint(equalToConstant: 50).isActive = true
button.heightAnchor.constraint(equalToConstant: 50).isActive = true
button.bottomAnchor.constraint(equalTo: self.view.bottomAnchor, constant: -20).isActive = true

关于ios - 以编程方式位于底部的按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45457763/

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