我在目标 C 中的 ipod 应用程序上使用 xcode 工作,并且在我的一个类(rootViewController)中有一个字段(navigationController)。如何从另一个类中引用实例化的 rootViewController 的 navigationController?例如,如果我想从 FirstViewController.m 类中引用 navigationController,我该怎么做?
我似乎只能找到对此的引用来引用应用程序委托。
如果我想用 FirstViewController 引用应用程序委托,我只是说:
MyAppDelegate *delegate = [[UIApplication sharedApplication] delegate];
[delegate.navigationController pushViewController:childController animated:YES];
如何为 rootViewController 类而不是 MyAppDelegate 执行此操作?