我在做this,試圖在風景中看到一個畫廊,但是當我將模型與主ViewController連接時,我只能看到風景方向:導航模式視圖控制器和導航控制器的層次結構
RootViewController的 - (模態賽格瑞)>圖片集錦
的問題是,當我這樣做:
Rootviewcontroler - (模態賽格瑞)> ViewControllerModal - (模態賽格瑞)>圖片集錦
它不工作,也不作品與導航控制器:
RootViewController的 - (模態賽格瑞)> NavigationController A - (推賽格瑞)> NavigationController乙 - (模態賽格瑞)>圖片集錦
我不知道如何導航層級多達內supportedInterfaceOrientationsForWindow畫廊,以及:
- (NSUInteger)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window{
if ([self.window.rootViewController.presentedViewController isKindOfClass: [PhotoGallery class]]){
PhotoGallery *photoGallery = (PhotoGallery *) self.window.rootViewController.presentedViewController;
if (photoGallery.isPresented) return UIInterfaceOrientationMaskLandscape;
else return UIInterfaceOrientationMaskPortrait;
}
return UIInterfaceOrientationMaskPortrait;
}
在此先感謝。
謝謝,我會嘗試。 – Javier 2015-02-07 08:54:02