1
votes

I have a UITableViewController embedded in a UINavigationController. Tapping a button pushes another view controller which has the navigation bar hidden. The issue is while the animation occurs, the navigation bar for the previous view turns a solid black.

Here's the best shot I could get. (The navigation bar is white by default)

http://imgur.com/fxU7VrS

1

1 Answers

0
votes

Fixed by using

[self.navigationController setNavigationBarHidden:YES animated:YES];

instead of

 self.navigationController.navigationBar.hidden = YES;