简体   繁体   中英

Navigate from UIViewController to UITabBarController make double NavigationBar

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)
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM