gpt4 book ai didi

ios - 如何在 iOS 中点击时增加按钮大小?

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

我试图在每次点击时增加按钮的大小。但是,我不知道该怎么做。

@IBAction func buttonPressed(sender: AnyObject) {
widthConstraint.constant += 10
heightConstraint.constant += 10
self.view.layoutIfNeeded()
}

最佳答案

在你的类中为宽度和高度创建IBOutletIBOutlet必须在xib文件中连接。

    @IBOutlet private weak var widthLayout: NSLayoutConstraint!
@IBOutlet private weak var heightLayout: NSLayoutConstraint!

override updateViewConstraints function

    override public func updateViewConstraints() {
super.updateViewConstraints()

widthLayout.constant += 10
heightLayout.constant += 10
}

在您的按下按钮函数中调用 self.updateViewConstraints()。PS引用图片:

enter image description here

结果:

enter image description here

关于ios - 如何在 iOS 中点击时增加按钮大小?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51202193/

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