iOS7 iPad Landscape only app, using UIImagePickerController
If your iPad app is landscape only in all conditions, just do these 3 steps : 1) In your app delegate – (NSUInteger)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window { return UIInterfaceOrientationMaskAll; } 2) Create a category header #import “UIViewController+OrientationFix.h” @implementation UIViewController (OrientationFix) – (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation { return UIInterfaceOrientationIsLandscape(toInterfaceOrientation); } – (BOOL)shouldAutorotate { return YES; } – (NSUInteger)supportedInterfaceOrientations { … Read more