What is the best way of loading images from the application main bundle. I am using
[UIImage imageNamed: \"image.png\"];
But I have heard that
If you want to try loading the images without caching, you can use:
[[UIImage alloc] initWithContentsOfFile:@"image.png"];
This could be slightly faster loading the image for the first time, since it doesn't have to cache it first. If you only need to use these images once, it probably makes sense to try it this way. The other benefit of doing it this way is that you won't have an image cache using up memory for longer than necessary.