1
方向在presentViewController中不起作用。即使我正在使用UINavigationController類別。 supportedInterfaceOrientations方法被調用,但沒有更改。在基本viewcontroller中,shouldAutorotate方法返回YES。我有以下代碼。ios 6 presentViewController
我正在使用此代碼。
ViewControllerOne *viewOne = [[ViewControllerOne alloc]init];
UINavigationController *navCtrl = [[UINavigationController alloc] initWithRootViewController:viewOne];
navCtrl.modalPresentationStyle = UIModalPresentationFormSheet;
[self presentViewController:navCtrl animated:YES completion:nil];
請幫幫我。在此先感謝...
[presentViewController不支持iOS 6中的方向]的可能重複(http://stackoverflow.com/questions/12566780/presentviewcontroller-not-supporting-orientation-in-ios-6) –