【发布时间】:2017-09-21 19:44:21
【问题描述】:
我在我的 iOS 应用中使用 Firebase 通知。当我单击通知然后打开第二个视图控制器但选项卡栏似乎没有。似乎只有导航控制器和表格视图。
let rootViewController = self.window!.rootViewController as! UITabBarController
let storyboard = UIStoryboard(name: "Main", bundle: nil)
let secondViewController = storyboard.instantiateViewController(withIdentifier: "SecondViewController") as! UINavigationController
rootViewController.present(secondViewController, animated: false)
【问题讨论】: