Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to load some images into my application from the file system. There's 2 easy ways to do this:

[UIImage imageNamed:fullFileName]

or:

NSString *fileLocation = [[NSBundle mainBundle] pathForResource:fileName ofType:extension];
NSData *imageData = [NSData dataWithContentsOfFile:fileLocation];

[UIImage imageWithData:imageData];

I prefer the first one because it's a lot less code, but I have seen some people saying that the image is cached and that this method uses more memory? Since I don't trust people on most other forums, I thought I'd ask the question here, is there any practical difference, and if so which one is 'better'?

I have tried profiling my app using the Object Allocation instrument, and I can't see any practical difference, though I have only tried in the simulator, and not on an iPhone itself.

share|improve this question
1  
Alternatively, you could use [UIImage imageWithContentsOfFile:path], which does not cache the image. – bentford Jul 27 '10 at 18:14

7 Answers

up vote 78 down vote accepted

It depends on what you're doing with the image. The imageNamed: method does cache the image, but in many cases that's going to help with memory use. For example, if you load an image 10 times to display along with some text in a table view, UIImage will only keep a single representation of that image in memory instead of allocating 10 separate objects. On the other hand, if you have a very large image and you're not re-using it, you might want to load the image from a data object to make sure it's removed from memory when you're done.

If you don't have any huge images, I wouldn't worry about it. Unless you see a problem (and kudos for checking Object Allocation instead of preemptively optimizing), I would choose less lines of code over negligible memory improvements.

share|improve this answer
I have question, after I used imageNamed, it caches images, ok, then, what should I do to release that cached image from memory? Will it autoreleased? Thx – Almas Adilbek Nov 29 '11 at 7:56
It will be released automatically if there's a low memory warning. – Nick Lockwood Feb 7 '12 at 10:11

In my experience [UIImage imageNamed:] has dramatically better performance, especially when used in UITableViews.

It's not just the memory but also decoding the image. Having it cached is much faster.

share|improve this answer
1  
Even more important is the reuseIdentifier on cells - if you don't reuse table cells performance will suffer. – Kendall Helmstetter Gelner Dec 7 '08 at 4:36

If you don't want your image do be cached you can also use initWithContentsOfFile directly :

NSString *fileLocation = [[NSBundle mainBundle] pathForResource:fileName ofType:extension];
UIImage* yourImage = [[[UIImage alloc] initWithContentsOfFile:imagePath] autorelease];
share|improve this answer

I've also been told that [UIImage imageNamed:] does a little bit too much caching, and images are not often released. I was told to be careful of using it.

share|improve this answer
I got in trouble with the caching. My app was loading images, then over-writing the image file, and that ended up causing really oddly messed up images and scary debug messages from the JPEG library. – Chris Lundie Nov 25 '08 at 3:54
3  
I think this is out of date now. – Roger Nolan Aug 2 '11 at 13:34

imageWithData is useful when you store your image binary in a database or progressively downloading large image from the web.

share|improve this answer

I would not use imagenamed if your app has loads of big images which are not the same. I experienced app crashing due to using too much of it.

share|improve this answer
ditto , my app was crashing because of imageNamed on some larger images. I thought it was a memory leak, but there was no evidence of that at all. Took a while to realize because it was happening intermittently, but imageWithData ened up solving the problem. – yeahdixon Nov 30 '10 at 19:25
Roger: You got a link with info, to back that up? I got similar problems with imageNamed on and off (mostly with many and big images) and always used other initializers to get around the problem. – Jonny Oct 4 '11 at 13:12

I don't believe that the image gets cached at all, and I don't know why you are all saying that. UIImage is a subclass of NSObject which uses reference counters to keep track of the things that it is related to. So when you load an image it does that same thing. If you load the same image multiple times it will(or should) have only one copy of the image in memory and just increment the reference counter every time you have to use something with that image. By Reference Counters I mean that when the count gets to 0 it deletes itself. so "alloc", "retain" are each +1 to the count and "release" is -1. Not only is it a better way to manage memory but this style of programming also helps clean up memory leaks.

share|improve this answer
1  
Could you please point us to any documentation that backs this? – Plumenator Dec 17 '10 at 10:41
2  
Sorry - but I think it is cached and it's rather well known. For a good blog post (not my blogg thou) read here: alexcurylo.com/blog/2009/01/13/imagenamed-is-evil – Magnus Jan 7 '11 at 8:01
Here is one source I found, scroll down to memory management sections. – andrew Feb 6 '11 at 0:06
Here is one source I found, scroll down to memory management sections. [link]cocoadevcentral.com/d/learn_objectivec Here is another, stack overflow with positive support. [link]stackoverflow.com/questions/6578/… – andrew Feb 6 '11 at 0:13
The links here are way out of date. See this related SO question: stackoverflow.com/questions/924740/… – Roger Nolan Aug 2 '11 at 13:33

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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