Swift:如何通过swift代码将按钮用于secondViewController

时间:2016-03-13 05:21:02

标签: xcode swift2

我有两个UIViewController,它们是FirstViewControllet和SecondViewController。我正在使用firstViewControllerto的“show”拍卖连接两个UIViewController。

我有问题,我不知道如何通过swift代码使用secondViewController,可以帮我解决这个问题吗?谢谢

@IBOutlet weak var txtUserInput: UITextField!

@IBAction func btnSecondView(sender: AnyObject) {
    if (txtUserInput != 0) {
         print(User Input > 0)
         //go to SecondViewController
    } else {
         print(User Input < 0)
         //display alert message
    }
}

在故事板上,我应该制作Picture2和Picture3?

图2: enter image description here

  1. 建立联系。
  2. 图片3:

    enter image description here

    1. 选择手动搜索节目
    2. 我有错误Picture4。 我该如何解决这个问题,谢谢

      图片4: enter image description here

1 个答案:

答案 0 :(得分:0)

let storyBoard : UIStoryboard = UIStoryboard(name: "Main", bundle:nil)

let SecondViewController = storyBoard.instantiateViewControllerWithIdentifier("SecondViewController") as SecondViewController
self.presentViewController(SecondViewController, animated:true, completion:nil)

确保将“SecondViewController”添加到Storyboard中视图控制器的Identifier选项卡中。