Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

For some reason, I can't call the initWithNibName method with getting the error message: "The result of a delegate init call must be immediately returned or assigned to 'self'". Is this some ARC perk, because without specifying the nib name, I can't initialize the view.

Here is my code in the .m file:

#import "SimpleMotionControllerIntroduction.h"

@implementation SimpleMotionControllerIntroduction

-(id) init
{
    self = [super init];

    if (self)
    {
        [self initWithNibName:@"SimpleMotionIntroductionView" bundle:nil];
    }

    return self;
}

@end

I feel like I'm making some sort of a careless error, I've worked with iOS 5 before, and made an app just like this that worked the same way. Thanks in advance.

share|improve this question

3 Answers

up vote 6 down vote accepted

Two careless errors: you are calling two init methods (1) and you are ignoring the result from the second (2, triggers the error message).

You should never have two init calls for one object. Note that initWithNibName calls init, too. I think this would actually result in an endless recursion and eventually stack overflow.

share|improve this answer
Great, thanks. I knew something was wrong. – user1163722 Feb 26 '12 at 1:05

If your bare -init is not doing any setup itself, but just deferring to another initializer, it should look like this:

-(id) init
{
    return [self initWithNibName:@"SimpleMotionIntroductionView" bundle:nil];
}

As it stands, you're doing two things wrong: throwing away the result of initWithNibName:bundle:, and re-initializing your object (because initWithNibName:bundle: will itself call up to [super init]). The first is the cause of the error message.

Only one initializer in a class should call up -- this is the "designated initializer". Every other initializer should call through to that one.

share|improve this answer

Change it to:

 self = [super initWithNibName:@"SimpleMotionIntroductionView" bundle:nil];

 if (self)
 {
      //custom initialization
 }

 return self;
share|improve this answer
1  
Wouldn't it be self = [super initWithNibName:]? – user1163722 Feb 26 '12 at 1:05
Yes... Typo. :-) – lnafziger Feb 26 '12 at 1:13

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.