标签: ios objective-c orientation uiimagepickercontroller
在横向模式下呈现UIImagePickerController时,它会旋转到纵向模式而不是横向模式。我在iPad中遇到此问题,但在模拟器中它工作正常。任何人都可以帮忙吗?
答案 0 :(得分:0)
尝试使用像这样:
-(NSUInteger)supportedInterfaceOrientations { return UIInterfaceOrientationMaskLandscape; }