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
}
|
I am not a fan of the following construction
Is the following equivalent?
| |||||
feedback
|
|
You may also wish to refer to Wil Shipley's take on this in his "self = [stupid init];" post. He originally recommended
but demonstrates a handful of cases where this may fail currently and may not work with some future changes by Apple. He now recommends
| |||
|
feedback
|
|
Lars D has your answer, but if you are looking for a way to clean up your
It crams all of the unpleasantness into one line, and it leaves the rest of your method free of one | |||
feedback
|