I'm presenting a NavigationController modally like this:
let profileViewController = ProfileViewController(nibName: nil, bundle: nil)
let navigationControllerProfile = UINavigationController(rootViewController: profileViewController)
navigationControllerProfile.setNavigationBarHidden(true, animated: false)
navigationControllerProfile.modalPresentationStyle = .fullScreen
self.present(navigationControllerProfile, animated: true, completion: nil)
Whenever I push a Viewcontroller from this NavigationController:
let showCaseViewController = ShowcaseViewController()
showCaseViewController.modalPresentationStyle = .overFullScreen
self.navigationController?.pushViewController(showCaseViewController, animated: true)
The ViewController is pushed correctly but after 1 second the entire NavigationController is dismissed.
code to present view-controller with navigation
code for perform push operation inside presented view controller