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

标签 ios xcode swift button

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

例如,按钮 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/

相关文章:

ios - 以编程方式将 ViewController 呈现在其他之上

iphone - 在使用php上传到服务器之前旋转图像

XCode:从构建阶段意外删除 "Link Binary with Library"选项

xcode - 向 SpriteNode 添加大小(约束)

arrays - 类型 'String' 不符合协议(protocol) 'NSCopying' - 数组 swift json 错误

ios - 为什么我的变量为零?

ios - Objective-c 将参数传递给 IBAction

xcode - 在 XCode 中设置全局 #define

swift - Dart 的 Optional 运算符是一个枚举,类似于 Swift 的吗?

ios - UITableView - 让图像跨越多个 UITableViewCells 并滚动