When I press back twice really quickly on the UINvaigationBar, then the UINavigationBar animates before the view, and then when the view finally animates the bar becomes blank. When I NSLog(@””,self.navigationItem.title) is prints the correct title. Does anyone have any ideas how to resolve this?
When I press back twice really quickly on the UINvaigationBar, then the UINavigationBar animates
Share
I’ve seen this happen when the init/loadView of a view controller that’s being pushed takes a non-negligible time- perhaps the viewWillAppear of your new view controller or the viewDidDisappear of the old is taking some time?