My question may sound stupid an all, but I like to know what happens if I mark an autoreleased object as autorelease. Will it be released twice? Or nothing happens? For example:
Obj * obj = [[Obj create] autorelease];
Let's say [Obj create]
returns an autoreleased object.
If I add another autorelease, what happens then?
+1
Nothing stupid about this question :) – Farnsworth