vote up 2 vote down star
2

When ran in activity monitor, the real memory usage for a program running the following piece of code will increase endlessly:

CGRect frame = CGRectMake(0,0,0,0);
while(true)
{
    NSAutoreleasePool *pool = [NSAutoreleasePool new];
    UIView *test = [[UIView alloc] initWithFrame:frame];
    [test release];
    [pool release];
}

What happens is that all objects derived from UIView will leak. Some will leak more than others (UITextView in particular has drawn atention to this problem). The leaks are not actualy discovered in the leaks monitor - their presence is only revealed by the constant increase in memory usage - which eventualy leads to the app being terminated by the OS because of memory exhaustion.

Has anyone noticed this before? For the record, the code was compiled for OS 3.0.

flag

67% accept rate
I think I'm seeing something similar but have not tracked it down yet :-( – Roger Nolan 1 hour ago

1 Answer

vote up 0 vote down

It could be that UIKit is using shared singleton objects when constructing UIView and something allocated by those singletons are not necessarily cleaned by NSAutoreleasePool but is cleaned during standard event loop execution via other means.

link|flag
From my tests the same situation occurs even when the alloc&init and release happen on different event loops. This is just a stress case. – MihaiD Sep 4 at 13:10

Your Answer

Get an OpenID
or

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