I want to navigate from the login screen to UITabBarController
.
I use this Line to navigate --> navigationController?.pushViewController(tabBarVC, animated: true)
When navigate show me two NavigationBar
.
I want to solve this problem.
I want to navigate from the login screen to UITabBarController
.
I use this Line to navigate --> navigationController?.pushViewController(tabBarVC, animated: true)
When navigate show me two NavigationBar
.
I want to solve this problem.
Make a subclass of UITabBarController
for your tabBarVC
,
Add these lines:
override func viewWillAppear(_ animated: Bool) {
super.viewWillAppear(animated)
navigationController?.setNavigationBarHidden(true, animated: true)
}