I am downloading two images from the web Apple.png and Apple@2x.png. I want to use [UIImage imageNamed:@"Apple.png"]
so it can use the build in features to detect whether it should display either Apple.png or Apple@2x.png.
Now where do I store these images? I read the following in the documentation:
The name of the file. If this is the first time the image is being loaded, the method looks for an image with the specified name in the application’s main bundle.
Ah so the Application's Main Bundle is the way to go. This is what my code looks like:
NSString *directory = [[NSBundle mainBundle] bundlePath];
NSString *path = [directory stringByAppendingPathComponent:imageName];
NSFileManager *fileManager = [NSFileManager defaultManager];
[fileManager createFileAtPath:path contents:dataFetcher.receivedData attributes:nil];
I checked if the file was created in the folder of the path and that was correct. I also dragged an Example.png in my project file just to see if it got stored in the same folder and that also was correct.
However, [UIImage imageNamed:@"Apple.png"]
, still fails to fetch the images.
Solution by OP.
Category for UIImage:
Download the images (asynchronously of course) to the store local to your app (ie, your sandbox), and reference them locally. You can then use
NSDocumentDirectory
orNSCachesDirectory
to always obtain a reference to their location.You cannot use
UIImage
'a+imageNamed:
method with pictures downloaded by the app. That method looks for images in the app bundle indeed, but your app is not allowed to change its own bundle at run time.Are the files being created with appropriate permissions for you to access them? Did you make sure to close the file after saving it?
You cannot modify your bundle at runtime. I also think that
imageNamed
uses something like a resources map initialized within the app containing the bundle resources references.Try this instead: http://atastypixel.com/blog/uiimage-resolution-independence-and-the-iphone-4s-retina-display/
Ciao!
I think the best solution is to make in Library folder your own bundle e.g.
images.bundle
. There you can strore your images for both resolutions. To access that images you can use pathForResource:ofType: method of NSBundle class. It returns appropriate images. Than init image with returned path.