Мой профиль...

Поиск по этому блогу

пятница, 9 декабря 2016 г.

Swift: programmatically switch ViewController

To switch between ViewController in Swift, you can use the following code:
@IBAction func nextButtonTapped(sender: AnyObject) {
    var nextView: TheNextViewController = self.storyboard?.instantiateViewControllerWithIdentifier("TheNextViewController") as! TheNextViewController
    let appdelegate = UIApplication.sharedApplication().delegate as! AppDelegate
    appdelegate.window!.rootViewController = nextView
}

Комментариев нет:

Релевантные посты...

Related Posts with Thumbnails