iOSアプリケーションでFirebase Notificationを使用しています。通知をクリックするとSecond View Controllerが開きますが、Tab Barは表示されません。ナビゲーションコントローラとテーブルビューのみが表示されます。rootViewControllerを使用するとタブバーが表示されない
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)