why app does not crash when i release any autorelease object, or is it that my app will crash some time later when autorelease pool is drained?
+1
A:
The crash would occur when the object is released more often that it is retained so in this case when the pool is drained.
Mark
2009-08-25 13:08:19
or potentially even later when some other object that has a retained pointer to your object releases it...
David Maymudes
2009-08-25 18:08:52