Dear experts! :)
Task: to authorize the user and go to the TabBar page.
When navigating using StoryBoard а (Action Segue) панель TabBar a а (Action Segue) панель TabBar is visible. During the program transition, the TabBar is not displayed.
Program transition:
let goToMain = self.storyboard?.instantiateViewController(withIdentifier: "MainActivity") as! MainActivity let navBarOnModal: UINavigationController = UINavigationController(rootViewController: goToMain) self.present(navBarOnModal, animated: true, completion: nil) Question: How to make TabBar visible during a program transition? (UITabBarController (). TabBar.isHidden = false does not help)

