views:

541

answers:

3

When I call:

self.viewController = [[DidItViewController alloc] initWithNibName:@"DidItViewController" bundle:nil];

and then I check self.viewController.navController right after this line is executed in the debugger, I find that it's empty (0x0).

On DidItViewController I have my navController defined as:

IBOutlet NavigationController *navController;

and in my nib file I have the NavigationController bound to this navController property on the File Owner (a DidItViewController).

Why doesn't my navController get created? Any ideas? I think I may be missing something about the way initWithNibName works..

Thanks.

+3  A: 

It may take a bit of time for the xib to load all of the components. Only after viewDidLoad can you be sure that the navController is initialized

ennuikiller
The Resource Programming Guide has more on the life cycle of nib files: http://developer.apple.com/iPhone/library/documentation/Cocoa/Conceptual/LoadingResources/CocoaNibs/CocoaNibs.html#//apple_ref/doc/uid/10000051i-CH4-SW18
Brad Larson
+1  A: 

You should not be defining a "navController" property; all UIViewControllers have a "navigationController" and "navigationItem" property already automatically defined. These will point to the navigation controller and the navigation item respectively, assuming the view is on a navigation controller stack.

As has been previously stated, though, the "navigationController" property cannot be relied upon until the "viewDidLoad" function has been called. You should override your "viewDidLoad" method in "DidItViewController" to do whatever manipulation you intend to do with the navigation controller.

EDIT:
See: UINavigationController* UIViewController::navigationController()
See: UINavigationItem* UIViewController::navigationItem()

Michael Aaron Safyan
A: 

Or you can use [NSBundle loadNibNamed:owner:options:] method instead of. This method ensures all outlet connections connected. (which [UIViewController initWithNibName: bundle:] doesn't)

Sample code

In this case, File's Owner in the NIB is an external instance of PhotoShow class.

// This works completely. All outlets works.
PhotoShow* obj = [[PhotoShow alloc] init];
[[NSBundle mainBundle] loadNibNamed:@"PhotoShow" owner:obj options:nil];
// Outlets are always available at this moment.

// This works. but does not connects outlets correctly sometimes.
PhooShow* obj = [[PhotoShow alloc] initWithNibName:@"PhotoShow" bundle:[NSBundle mainBundle]];
// Outlets may not available at this moment.

Selection from reference document

You can use this method to load user interfaces and make the objects available to your code. During the loading process, this method unarchives each object, initializes it, sets its properties to their configured values, and reestablishes any connections to other objects. (To establish outlet connections, this method uses the setValue:forKey: method, which may cause the object in the outlet to be retained automatically.) For detailed information about the nib-loading process, see Resource Programming Guide.

Eonil