vote up 1 vote down star
- (void)viewDidLoad {
    [super viewDidLoad];
    landscape.image = [UIImage imageNamed:@"tenerife1.png"];
}

I assign that new UIImage to the image property of an UIImageView object. I am not sure if that would result in an memory leak?

flag

58% accept rate

4 Answers

vote up 4 vote down

No, it should not. The old image should be automatically released when you set the new one, and the "imageNamed" method uses autorelease, so you should be OK there.

link|flag
vote up 1 vote down

It depends on how the image property is defined. If it's defined as retain or, I suppose, even copy, it should be fine. You'll end up trying to reference deallocated memory and crashing your program if it's defined as assign.

link|flag
vote up 0 vote down

Not ordinarily, but it would depend on how you've defined landscape.image. See post above. Be careful with using a lot of these:

[UIImage imageNamed:@"tenerife1.png"];

Since there is a tendency for these images to fill up memory, without getting released.

link|flag
what should i use instead of that? – Thanks Apr 1 at 19:34
vote up 3 vote down

hey take into account imageNamed has serious memory issues as you loose control over its cache - ie: once you are done with your image, you cannot reclaim that memory. a quick google search would let you know how many people have faced problems with imageNamed

i was at the apple iphone tech talks and the guy giving the presentation confirmed the same damn thing - he suggested using imageWithContentsOfFile instead of imageNamed

if you just have couple of small images, its fine otherwise use imageWithContentsOfFile even though its a bit slower - and implement your own caching logic - check this great link on how to do it here

link|flag

Your Answer

Get an OpenID
or

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