I'm subclassing a class. I'm overriding a init method. This one: -(id)initWithSomething:(Something*)somet;

this would look like this (in the subclass)

-(id)initWithSomething:(Something *)somet with:(int)i{

    if (self = [super init]) {
     //do something   
    }

    return self;
}

But now I want to call the init in the superclass too.

How would I now do this? Mayby this way?

-(id)initWithSomething:(Something *)somet with:(int)i{

    if (self = [super init]) {

    }

    [super initWithSomething:somet];

    return self;
}
link|improve this question

61% accept rate
feedback

2 Answers

up vote 2 down vote accepted

Typically like this:

-(id)initWithTarget:(CCNode *)someTarget
{
    self = [super initWithTarget:someTarget];
    if (self)
    {

    }
    return self;
}

It's the responsibility of super to call the vanilla init selector if it needs to.

link|improve this answer
that was a fast answer- I can accept it in 11 minutes... – cocos2dbeginner Aug 26 '11 at 15:56
+1............. – cocos2dbeginner Aug 26 '11 at 16:02
feedback
-(id)initWithSomething:(Something *)somet {
    if ((self = [super initWithSomething:somet])) {
      // ...
    }    
    return self;
}

One-and-only-one method should be your "designated initializer" for a class. All other initializers should call that one, and the designated initializer should call super's designated initializer. (This is a general rule; there are a few exceptions such as in initWithCoder:, but it is the normal approach.)

link|improve this answer
+1............. – cocos2dbeginner Aug 26 '11 at 16:02
feedback

Your Answer

 
or
required, but never shown

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