Titles not appearing on the ViewControllers navigation bar
Also You can use this code .
self.navigationController.topViewController.title=@"YourTitle";
put inside viewDidAppear or viewWillAppear
You just need to call this on the viewController:
override func viewDidLoad() {
super.viewDidLoad()
self.title = "My Title"
}
self.navigationController.navigationBar.topItem.title = @"YourTitle";
Simply put that in viewDidAppear in your ViewControllers.