gpt4 book ai didi

ios - 从 AppDelegate.swift 执行 Segue

转载 作者:搜寻专家 更新时间:2023-11-01 07:28:50 25 4
gpt4 key购买 nike

我正在尝试在收到通知后执行 segue。

这是我的应用委托(delegate)中的内容。

func application(application: UIApplication, didReceiveRemoteNotification userInfo: [NSObject : AnyObject]) {


let viewController = self.window!.rootViewController!.storyboard!.instantiateViewControllerWithIdentifier("SecondViewController")
self.window?.rootViewController = viewController


}

这会将我直接带到我希望它去的 View ,但是导航栏和标签栏是隐藏的。从应用程序委托(delegate)中,我如何执行从一个 View 到另一个 View 的转场?这样我就可以像从第一个 View 推开一样通过第二个 View 到达?

最佳答案

你试过吗:

viewController.performSegueWithIdentifier("my_segue_identifier", sender: nil)

此外,更稳健的方法是从您的 AppDelegate 广播 NSNotification 并让您的 View Controller 监听特定通知。

关于ios - 从 AppDelegate.swift 执行 Segue,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33983116/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com