I had the same problem and I finally solved it.
First remove the " Supported Interface Orientation " key from info.plist .
Then add the " Interface Orientation Orientation " key to info.plist. Set the key value as " Landscape (right button of the house) .
Finally, add to your appDelegate.mm.
-(NSUInteger)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window{ return UIInterfaceOrientationMaskAll; }
source share