标签:
//解决方案
ios文件夹下得AppController
- (NSUInteger)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window{
return UIInterfaceOrientationMaskAll;
}
然后在使用UIImagePickerController的viewController
- (NSUInteger)supportedInterfaceOrientations{
return UIInterfaceOrientationMaskLandscape;
}
标签:
原文地址:http://www.cnblogs.com/lude/p/4289730.html