gpt4 book ai didi

ios - 如何隐藏 Xcode 6 中的按钮?

转载 作者:搜寻专家 更新时间:2023-10-30 22:05:17 24 4
gpt4 key购买 nike

我只想隐藏一个按钮,直到按下另一个按钮。

例如,按钮 1 可见,但按钮 2 不可见。当我按下按钮 1 时,我需要按钮 2 出现。

另外,我正在使用 Swift 在 Xcode 6 中编程。

提前致谢!

最佳答案

Swift隐藏按钮的示例代码:

import UIKit

class ViewController: UIViewController {

// Create outlet for both the button
@IBOutlet weak var button1: UIButton!
@IBOutlet weak var button2: UIButton!

override func viewDidLoad() {
super.viewDidLoad()
//Set button2 hidden at start
button2.hidden = true
}



//Here is the action when you press button1 which is visible
@IBAction func button1(sender: AnyObject) {
//Make button2 Visible
button2.hidden = false
}

}

也许这可以帮到你。

关于ios - 如何隐藏 Xcode 6 中的按钮?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27007631/

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