I still have some unclear understand about release and autorelease. What are the difference between both of them? I have this code. For facebook connection. I crash it somet
background discussion:
objective-c is reference counted, so objects are deleted when the reference count reaches 0. release reduces the reference-count immediately, autorelease reduces it when the autorelease-pool is popped
when to use:
use autorelease when allocating the object if
use "manual" release
but really my freand:
Erik