vote up -3 vote down star

In my iphone app in objective c, dealloc doesn't call automatically

flag

0% accept rate
4  
This is not a question. – Amuck Sep 28 at 5:07
Automatically when? – Nick Bedford Sep 28 at 5:24

3 Answers

vote up 2 vote down

No, it isn't supposed to. It would be quite inconvenient if objects were deallocated without your permission. dealloc may be called when an object's retain count drops to 0 (or it may not, depending on the object).

If you're having a more specific problem, it might help to describe that.

link|flag
vote up 1 vote down

dealloc is called when the retainCount of an object becomes 0. So, if you do the following:

MyObject *myInstance = [[MyObject alloc] init];
[myInstance release];

-[MyObject dealloc] will be called. Objective C on the iPhone is not garbage collected, so if you do not handle retains and releases correctly your deallocs will not get called, because no objects will ever be dealloced.

Also, you should NEVER call dealloc directly. The only time you should ever call dealloc is calling [super dealloc] inside of your dealloc implementation. If you ever call it anywhere else you are handling memory management wrong and your app will crash.

link|flag
vote up 0 vote down

If you happen to mean that the dealloc of some of your objects are never called when you are quiting, that's because the iPhone OS finds it is easier to just quit and do a little housekeeping, vs. removing all objects, say, views, unloading them, unloading the irviewControllers and dealloc'ing everything.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.