0
我有一個模塊化添加圖像選擇器控制器的vc,然後在選擇圖片時返回相同的vc。在通過PickerController獲取圖像後,我將圖像添加到屏幕上,並且如果圖像是風景,我希望設備自動切換到風景,如果圖像是肖像,則需要人像。無法強制設備更改UIOrientation
我已經嘗試過失敗這兩種方法來強制設備進入景觀
1.
[[UIApplication sharedApplication] setStatusBarOrientation:UIInterfaceOrientationLandscapeLeft];
2.
[UIViewController attemptRotationToDeviceOrientation];
-(NSUInteger)supportedInterfaceOrientations
{
if (!isPortrait) //isPortrait is false when pic is landscape
return UIInterfaceOrientationMaskLandscape;
}
另外,我想知道如果這是最好的只是實例化圖像的單獨的VC。我避開它迄今在此之後question