我有一個使用UITableView的主菜單,它可以成功推送並顯示其他ViewControllers。但是,在這些推送的控制器中,我希望能夠將其他控制器推到navigationController堆棧上。 self.navigationController
在推送ViewController貌似沒有引用任何東西,所以當我做[self.navigationController pushViewController:nextVC animated:YES];
沒有任何反應。我究竟做錯了什麼?從'push'ed viewcontroller訪問navigationController?
1
A
回答
0
類{
從這裏û推到B類
所以
而被推到B類
推之前指定
classbObject.classaNav = self.navigationController ;
然後推它。
}
類B {
申報
導航控制器這裏
的UINavigationController * classaNav;
鑑於沒有負載ü可以訪問classaNav
}
歡呼!!!!!
0
我猜測它與動畫有關。將動畫屬性設置爲NO,然後嘗試。另外,請發佈您的代碼。
相關問題
- 1. 從ViewController(storyboard)調用NavigationController(xib)
- 2. Tabbarcontroller,NavigationController和viewController
- 3. 如何從popoverController訪問navigationController?
- 4. 從ViewController訪問drawRect?
- 5. 如何從viewController訪問applicationDidEnterBackground
- 6. 從ViewController中訪問SceneKit-Node
- 7. 從ViewController訪問Programatic視圖?
- 8. 無法從AppDelegate訪問ViewController
- 9. 上呈現的ViewController/NavigationController
- 10. Dismiss Modal NavigationController from Push ViewController
- 11. 在TabBarController內的NavigationController中從(Table)ViewController呈現模態ViewController
- 12. 如何訪問MPMediaPickerController navigationController?
- 13. 從AppDelegate訪問故事板ViewController問題
- 14. ViewController訪問數據
- 15. 從ViewController訪問視圖子視圖
- 16. 從TableViewCell中的操作訪問ViewController
- 17. 在didReceiveRemoteNotification方法中從ViewController訪問viewDidLoad
- 18. 從AppDelegate.m訪問當前ViewController類名稱
- 19. 從另一個viewController訪問信息
- 20. Swift - 從viewController訪問AppDelegate窗口
- 21. 從TabBarController訪問viewController的屬性
- 22. 如何替換NavigationController Stack中的viewController?
- 23. 帶有NavigationController的ViewController循環到自身
- 24. 訪問的viewController財產
- 25. 從外部viewcontroller訪問時未初始化ViewController屬性
- 26. 如何訪問從viewController另一個viewController在Swift 3
- 27. 在ViewController中訪問變量
- 28. 在NavigationController中禁用ViewController的旋轉
- 29. navigationController規則不適用於ViewController
- 30. 多個分段到一個ViewController與NavigationController?
你可以發佈相應的代碼嗎? – schaechtele 2010-04-16 08:11:12
這樣做的方法肯定是使用self.navigationController。請張貼第一次推入導航堆棧的代碼 – 2011-04-06 17:30:49