I have some wierd bug with UINavigationBar.
Sometimes it just disappears (actually if you move view to the half of screen, and then just release it)
In the first ViewController's viewWillAppear:
method i call:
[self.navigationController setNavigationBarHidden:NO animated:YES];
The second ViewController's viewWillAppear:
contains:
[self.navigationController setNavigationBarHidden:YES animated:NO];
I tried change animated:
parameter, but it doesn't help.
Is it iOS7 bug or I just doing something wrong?