Is it acceptable/safe in Objective-C/Cocoa to wrapping the init method as follows:
-(id)init {
if ((self=[super init])) {
self.bar = [[Bar alloc] init];
}
return self;
}
-(id)initWithFoo:(Foo *)f {
if ((self=[self init])) {
self.foo = f;
}
return self;
}
Note the [self init] in initWithFoo.
perhaps this is a simple yes answer... seem obvious, but not standard?
initWithFoo:is the initializer that does the most. But it does so indirectly by calling another initializer, that does something else. Common (and good!) practice is to have one designated initializer. The most specific one, the one all other initializers call with default arguments. And that would be number two, as it initializes two ivars:fooandbar. – danyowdee Nov 15 '12 at 19:19initandinitWithJSON:. – Ross Nov 15 '12 at 19:25init:andparseJSONif it is uncommon?initWithJSONcallsparseJSONin my case. – Ross Nov 15 '12 at 19:26