Reputation: 1737
I have an iPad application with a simple tab bar. I need to fix the orientation as portrait. I do that by setting "Portrait (bottom home button)" in the "Supported interface orientation" field in the plist file.
The problem is that the status bar still move when rotating the iPad... how can I fix it ??
Thanks for reading.
Upvotes: 1
Views: 1345
Reputation: 135548
Remove the default implementation of shouldAutorotateToInterfaceOrientation:
from all your view controllers.
Upvotes: 1