I have this problem... I need to load an image from the resources of my app that is called for example mystuff01.jpg but maybe be called mystuff01.gif or png, now, what's the best solution to do this? In my mind there's a cycle to retrieve if the file exists and if exists load it... there's a better solution? thanks

link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

I think one of the solutions is to create an NSArray {@".jpg", @".png" }, loop through the array and add the extension to the file name, then check if the file name + extension exists, then you load it. It will be easier to do, and can be done with loop

link|improve this answer
yes, this is what I think.. I'll try – ghiboz Jul 9 '10 at 8:39
feedback

From UIImage

On iOS 4 and later, the name of the file is not required to specify the filename extension. Prior to iOS 4, you must specify the filename extension.

Otherwise, you would have to try each extension. You could pass the name with each extension directly to [UIImage imageNamed:], find one that works with [mainBundle pathForResource:ofType:];, or use NSFileManager to get a list of resources and look for the closest match.

link|improve this answer
feedback

If you are loading the file from the file system and not the bundle, then you might want to use this:

NSString *assetsDirectory = [....] // your base asset directory, e.g. documents directory
NSArray *extensions = [NSArray arrayWithObjects:@"png", @"jpg", @"jpeg", nil];
NSFileManager *fm = [NSFileManager defaultManager];
NSString *storageLocation = nil;
for (NSString *ext in extensions) {
    NSString *testLocation = [NSString stringWithFormat:@"%@/mystuff.%@", assetsDirectory, ext];
    if ([fm fileExistsAtPath:testLocation]) {
        storageLocation = testLocation;
        break;
    }
}

// file name is in "storageLocation" now
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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