I have a project based on a navigation based application template. AppDelegate uses the -applicationDidFinishLoading: and -applicationWillTerminate: methods. In these methods, I load and save the application data and save it in the instance variable (this is actually a graph object).
When the application loads, it loads MainWindow.xib, which has a NavigationConroller, which in turn has a RootViewController. The RootViewController nibName property points to RootView (my actual controller class).
In my class, I want to refer to the object that I created in the -applicationDidFinishLoading: method -applicationDidFinishLoading: that I can get a reference to it.
Can someone tell me how to do this? I know how to refer between objects that I created programmatically, but I cannot understand that I need to reverse my path, given that the middle step was made from a NIB file.
iphone cocoa-touch
cdeerinck Oct 23 '08 at 23:27 2008-10-23 23:27
source share