In my iphone app in objective c, dealloc doesn't call automatically
|
|
|||||||
|
|
|
No, it isn't supposed to. It would be quite inconvenient if objects were deallocated without your permission. If you're having a more specific problem, it might help to describe that. |
||
|
|
|
|
dealloc is called when the retainCount of an object becomes 0. So, if you do the following:
-[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. |
||
|
|
|
|
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. |
||
|
|
