show/hide this revision's text 4 edited tags
show/hide this revision's text 3 Edit tags
show/hide this revision's text 2 added 126 characters in body

What is the difference between the following 2 ways to allocate and init an object?

AController *tempAController = [[AController alloc] init];
self.aController = tempAController;
[tempAController release];

and

self.aController= [[AController alloc] init];

Most of the apple example use the first method. Why would you allocate, init and object and then release immediately?

show/hide this revision's text 1