The launch page of my app is set to portrait only with this little bit of code:
- (NSUInteger)supportedInterfaceOrientations { return UIInterfac
Have you try with implementing shouldAutorotate ? You can do in your case :
shouldAutorotate
- (BOOL)shouldAutorotate { if (UIInterfaceOrientationIsLandscape([[UIDevice currentDevice] orientation])) return NO; else return YES; }