我正在创建一个在横向模式的应用程序,我正在使用UI
ImagePickerController使用iPhone摄像头拍摄照片,我想在风景模式下创建它.
解决方法
如果要在横向模式下使用UIImagePickerController,请使用
user1673099’s answer,而不是:
- (BOOL)shouldAutorotate { return NO; }
使用:
- (NSUInteger)supportedInterfaceOrientations{ return UIInterfaceOrientationMaskLandscape; }
然后选择器将以横向模式打开:
但请确保您在部署信息中检查纵向: