vote up 2 vote down star
2

I have an class that inherits from UIViewController. There, I want to make some ivar initialization like this:

- (id)initWithNibName:(NSString *)nibName bundle:(NSBundle *)nibBundle { // Load the view nib
    NSLog(@"Hello Earth!");
    if (self = [super initWithNibName:nibName bundle:nibBundle]) {
    	self.visibleIndex = 0;
    	NSLog(@"Hello Planet!");
    }
    return self;
}

For some reason I do see the contents that were loaded from the nib. But for another reason this initializer will never be called. I never get the log messages. What's wrong with that? I have a nib for sure, so actually this would have to be called, right?

flag

58% accept rate

1 Answer

vote up 4 vote down

This method isn't used if your UIViewController is being created by a nib. You need to override viewDidLoad:

-(void) viewDidLoad {
    [super viewDidLoad];
    NSLog(@"Hello Planet");
}

initWithNibName is only used if you are actually instantiating the controller by code.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.