I am trying to get my head around the following.
I'm debugging an app that seems to require more memory than necessary. I added the following code to 'crashtest' a viewcontroller:
NSLog(@"allocating 10000 instances of the MyViewController");
for (int i=0; i<10000; i++) {
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
MyViewController *aController = [[MyViewController alloc] initWithNibName:@"MyViewController" bundle:nil];
if (aController.view == nil) {}
[aController release];
[pool drain];
}
NSLog(@"done allocating 10000 instances of MyViewController");
When I run the above code in Instruments/Allocations, its memory usage All Allocations / live is about 5 Mb before entering the loop. It's about 24 Mb after the loop has run.
If I run the same code with the line if (aController.view == nil) {} disabled, memory doesn't increase significantly.
UIViewController automatically calls loadView() because I use aController.view. So I can understand a temporary increase in mem usage. But shouldn't that memory get deallocated when I call release on the controller? Or does the memory allocated (and listed under live bytes) for a view only actually get freed under a low memory condition?
-dealloc? – tc. Jun 19 '11 at 14:24dealloc:[myButton release], myButton = nil– user601632 Jun 19 '11 at 15:34