up vote 1 down vote favorite
share [g+] share [fb]

I am not a fan of the following construction

    if (self = [super init])
{
 //do something with self assuming it has been created
}

Is the following equivalent?

self = [super init];

if (self != nil)
{
 //Do something with Self
 }
link|improve this question

Yes, they are the same. – codelogic Nov 7 '09 at 9:04
@codelogic why not an answer? – Toby Allen Nov 7 '09 at 9:28
feedback

3 Answers

up vote 6 down vote accepted

Yes they are. The = operator returns the value.

link|improve this answer
feedback

You may also wish to refer to Wil Shipley's take on this in his "self = [stupid init];" post. He originally recommended

- (id)init;
{
 if (![super init])
   return nil;

 [...initialize my stuff...]
 return self;
}

but demonstrates a handful of cases where this may fail currently and may not work with some future changes by Apple. He now recommends

- (id)init;
{
 if (!(self = [super init]))
   return nil;

 // other stuff
 return self;
}
link|improve this answer
feedback

Lars D has your answer, but if you are looking for a way to clean up your init methods, I prefer the following:

- (id)init
{
    if ((self = [super init]) == nil) { return nil; }

    // your logic

    return self;
}

It crams all of the unpleasantness into one line, and it leaves the rest of your method free of one if statement (and associated parentheses).

link|improve this answer
I come from a Delphi background so I find the mixing of an assignment operator and an equals operator in an if statement overly confusing, which is why I was trying to move it out of the if statement. – Toby Allen Nov 7 '09 at 9:56
feedback

Your Answer

 
or
required, but never shown

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