I have set UITabBarController in AppDelegate and I have set the root view to tab bar object. But I need to set root view to another view controller without losing the functionalities of tab bar. How can I achieve that?
let vc1 = ConstituencyViewController()
//vc1.view.backgroundColor = UIColor.orange
vc1.tabBarItem.title = "Search"
vc1.tabBarItem.image = UIImage(named: "Search")
// Set up the second View Controller
let vc2 = ConstDetailViewController()
//vc2.view.backgroundColor = UIColor.purple
vc2.tabBarItem.title = "User"
vc2.tabBarItem.image = UIImage(named: "Street View")
// Set up the Tab Bar Controller to have two tabs
let tabBarController = UITabBarController()
tabBarController.viewControllers = [vc1, vc2]
// Make the Tab Bar Controller the root view controller
window?.rootViewController = tabBarController
window?.makeKeyAndVisible()