我有一個UITabViewController應用程序,帶有4個選項卡,每個選項卡帶有一個UINavigationController,每個選項卡都帶有一個UItableView。當單擊一行時,它將導航到另一個視圖。 我想只爲某個UIViewController支持Landscape Orientation,而不支持任何其他視圖。 當我在每個UINavigationcontrollers(BOOL)shouldAutorotateToInterfaceOrientation:方法上設置「return YES」時,即使在uitableview中,應用也會定向到所有視圖。 我該如何解決這個問題?我很困惑UiTabViewControllers + UINavigationControllers + UIViewControllers方向
2
A
回答
0
如果你想維護你的需求視圖,那麼你必須爲每個選項卡做不同的視圖,在界面生成器中,你必須創建任何你需要的橫向視圖。添加橫向視圖時,在界面構建器中創建的橫向視圖將僅顯示爲橫向。將不需要shouldAutorotateInterfaceOrientation方法。
相關問題
- 1. 如何在UINavigationControllers中鎖定方向
- 2. UIViewControllers沒有收到方向通知
- 3. 雙UITabViewControllers使用故事板
- 4. 嵌套的UINavigationControllers
- 5. popToRootViewController不與UINavigationControllers
- 6. UIViewController navigationItems與UINavigationControllers導航欄的關係?
- 7. 混淆UINavigationControllers在SplitViewController
- 8. UINavigationController堆棧中UIViewControllers的不同界面方向
- 9. 需要幫助修復某些UIViewControllers的方向
- 10. 問題交換UIViewControllers當取向改變
- 11. 用UIView替換UINavigationControllers NavigationBar
- 12. UIViewControllers,Delegates
- 13. 我可以在哪裏設置UINavigationControllers supportedOrientations?
- 14. 兩個UINavigationControllers之間的轉換
- 15. 通過UIViewControllers導航的方法
- 16. 是不是改變UIViewControllers的好方法?
- 17. 只允許使用tabbars和UInavigationcontrollers的orientationPortrait?
- 18. 自定義塞格推/推UIViewControllers
- 19. 與地圖類似的多個UINavigationControllers
- 20. 發佈UIViewControllers
- 21. UIViewControllers和ARC
- 22. UIViewControllers問題
- 23. iphone - 緩存UIViewControllers?
- 24. 的UIScrollView多UIViewControllers
- 25. UIViewControllers和UIWebView
- 26. 父子UIViewControllers IOS
- 27. 分層UIViewControllers?
- 28. UIViewControllers - TabBarApplication - iPhone SDK
- 29. UIViewControllers的IBOutletCollection
- 30. Storyboard中的多個UIViewControllers具有不同的界面方向首選項
您是在導航控制器還是表格視圖控制器中定義shouldAutorotateToInterfaceOrientation方法? – Nimrod 2010-10-11 17:30:57
我正在定義導航控制器中的shouldAutorotateInterfaceOrientation方法 – Rupert 2010-10-12 05:39:59