This may come a little late but I have just had the EXACT same problem. I was desiging a reader view in full-screen with transparent status bar, navigation bar and toolbar that you could fade in and out by tapping in the center of the screen.
The way I have managed to fix it is really simple, basically the core of the problem if this :
When you rotate the view and the NavigationController recalculates its new position, it thinks it should be at the top of the window because the status bar is hidden. When you show both the status bar and the navigation bar after that, they are overlapping.
The way to fix this is really easy, simply keep a BOOL to remember if your overlay is shown or hidden, and implement both willRotateToInterfaceOrientation and willAnimateRotationToInterfaceOrientation in your ViewController.
- (void)willRotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration
{
if (!isOverlayShowing)
{
[[UIApplication sharedApplication] setStatusBarHidden:NO];
}
[super willRotateToInterfaceOrientation:toInterfaceOrientation duration:duration];
}
- (void)willAnimateRotationToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration
{
if (!isOverlayShowing)
{
[[UIApplication sharedApplication] setStatusBarHidden:YES];
}
[super willAnimateRotationToInterfaceOrientation:toInterfaceOrientation duration:duration];
}
By quickly showing and hiding the StatusBar in these two methods, the StatusBar is shown at the exact moment the NavigationBar recalculates its position. I don't know if this is the best implementaiton to fix this problem, but so far this method works and does not create any flickering on screen and is very smooth.
I hope someone else with my problem may stumble upon this post and find this easy solution to this problem.