I'd like to have my navigationBar
fade out along with my status bar and setting animated:
to YES
does not work, since it just animates the navigationBar
up. I have tried the following:
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:0.5];
self.navigationController.navigationBar.alpha = 0.0;
[UIView commitAnimations];
[[UIApplication sharedApplication] setStatusBarHidden:YES animated:YES];
But it does not work.