在iPad中呈现UIImagePickerController时的LandScape Orientation问题

时间:2016-07-25 11:30:05

标签: ios objective-c orientation uiimagepickercontroller

在横向模式下呈现UIImagePickerController时,它会旋转到纵向模式而不是横向模式。我在iPad中遇到此问题,但在模拟器中它工作正常。任何人都可以帮忙吗?

1 个答案:

答案 0 :(得分:0)

尝试使用像这样:

-(NSUInteger)supportedInterfaceOrientations
{
   return UIInterfaceOrientationMaskLandscape;
}