我有两个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?
答案 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选项卡中。