When i move to view controller after making navigationbar.ishidden = false the navbar height decreases and there is a black space between navbar and uiview And when i move down the notification screen navbar height increase
Code
viewController = PlaceOrderViewController(nibName: "PlaceOrderViewController", bundle: nil)
viewController.hidesBottomBarWhenPushed = true
viewController.navigationController?.isNavigationBarHidden = false
viewController.modalPresentationStyle = .fullScreen
viewController.fromLastScreen = "ProductDetailViewController"
self.navigationController?.pushViewController(viewController, animated: true)