Possible Duplicate:
when is the dealloc method called?
When is the dealloc method called? Is it called automatically or not?
If I write
UIButton *Btn = [UIButton alloc];
[Btn release];
then is dealloc called now beacuse the reference count is zero?
If not, then when and how does it work? What is super?
When it's called, is everything I release inside dealloc be released or not? For example, suppose dealloc is called, and we realese btn1 and btn2, but btn2's reference count is still two. When dealloc is called, is btn2 also released and its reference count one, or does it become zero?
alloc; it is an implementation detail. Example;[NSString alloc]doesn't allocate anything. – bbum May 17 '12 at 20:18