如何在应用程序在swift中再次激活时加载视图

时间:2016-10-19 00:56:51

标签: ios xcode swift2

我想在我的应用再次激活时打开某个视图。在我的appDelegate文件中,我有这个

func applicationDidBecomeActive(application: UIApplication) {

    print("ACTIVATE!")
}

这很好但我不知道如何打电话或打电话打开我想要的视图。我想打开的视图称为“StartUpLoginPage”

1 个答案:

答案 0 :(得分:0)

我解决了这个问题

  func applicationDidBecomeActive(application: UIApplication) {

    //open the login page to do the updating of the user infomration
    print("ACTIVATE!")
    let storyboard = UIStoryboard(name: "Main", bundle: nil)
    let vc = storyboard.instantiateViewControllerWithIdentifier(loginPage)
    self.window?.rootViewController = vc
}

像魅力一样工作。