我有一個UIViewController
嵌入UINavigationController
。我想介紹這viewController
和呈現後,我也需要導航方法(推&波普),所以我提出UINavigationController
而不是UIViewController
,但爲此,我需要傳遞自定義數據到ViewController
作爲我沒有訪問該ViewController
形式以前ViewController
。 這是我的代碼。通過NavigationController傳遞數據
UINavigationController *navigationController = [self.storyboard instantiateViewControllerWithIdentifier:@"MyNavigationIdentity"]];
[self presentViewController:navigationController animated:YES completion:nil];
P.S我不能
alloc
和init
新navigationController
爲我設計我的navigationController從故事板。
爲此,您需要使用'UINavigationController'的childViewControllers屬性。你可以查看我的答案瞭解更多詳情 – KrishnaCA