【发布时间】:2023-03-12 12:18:01
【问题描述】:
在横向模式下呈现 UIImagePickerController 时,它会旋转到纵向模式而不是横向模式。我在 iPad 中遇到了这个问题,但在模拟器中它工作正常。有人可以帮忙吗?
【问题讨论】:
标签: ios objective-c orientation uiimagepickercontroller
在横向模式下呈现 UIImagePickerController 时,它会旋转到纵向模式而不是横向模式。我在 iPad 中遇到了这个问题,但在模拟器中它工作正常。有人可以帮忙吗?
【问题讨论】:
标签: ios objective-c orientation uiimagepickercontroller
尝试像这样使用:
-(NSUInteger)supportedInterfaceOrientations
{
return UIInterfaceOrientationMaskLandscape;
}
【讨论】: