Main View Controller で managedObjectContext への参照を渡すために、App デリゲートに次のコードがあり、正常に動作します。
//Grab the Navigation Controller in front of the Main View Controller
UINavigationController *nav = (UINavigationController *)self.window.rootViewController;
//Grab Main View Controller out of the navigation controller at Position 0
SceneTwo *sceneTwo = (SceneTwo *) [[nav viewContollers]objectAtIndex:0];
//Pass the reference to managedObjectContext.
sceneTwo.managedObjectContext = self.managedObjectContext;
問題: 前にナビゲーション コントローラーがあるメイン ビュー コントローラー (シーン 1) 内の ContainerView で managedObjectContext への参照を渡したいと思います。上の写真をご覧ください。
containerView のナビゲーション コントローラを取得するコードは何ですか? そのナビゲーション コントローラーからシーン 1 を取得するコードは何ですか?
ありがとう。