回答

1

我也有這個問題。以下是我發現的內容:

在Target的「iPad部署信息」配置中,請確保啓用了「風景左轉」和「風景右轉」模式 - 即使您的應用程序沒有真正支持這些模式顯然,通過info.plist文件完成)。

enter image description here

接下來,在你的UIViewController(S),迫使他們肖像:

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation 
{ 
    return UIInterfaceOrientationIsPortrait(interfaceOrientation); 
} 

- (BOOL)shouldAutorotate 
{ 
    return YES; 
} 

- (NSUInteger)supportedInterfaceOrientations 
{ 
    return UIInterfaceOrientationMaskPortrait | UIInterfaceOrientationMaskPortraitUpsideDown; 
} 

現在UIImagePickerController應該正確地旋轉當iPad旋轉爲橫向 - 但你UIViewController仍然會人像只。

+0

對不起,這不能修復覆蓋不旋轉 - 只有在iphone上!感謝您的意見。 –