I’m developing app for iPhone that is show other view each orientation(Portrate and Landscape).
and I programed no statusBar animation like this.
[application setStatusBarOrientation:UIInterfaceOrientationPortrait animated:NO];
But when I launch app on iPad and rotate it,
statusBar Animation occered!
Why statusBar Animation setting is ignored?
It is possible to disable the animation, without breaking everything apart.
The following codes will disable the “black box” rotation animation, without messing with other animations or orientation code:
Place it in your UIViewController and all should be well. Same method can be applied to any undesired animation in iOS.
Best of luck with your project.