i use Firebase Notification in my iOS App. When i click the notification then opening Second View Controller but Tab Bar doesn't seem. Only Navigation Controller and Table View seems.
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)