Sorry, dumb question number 2 today. Is it possible to determine if a file is contained within the App Bundle? I can access files no problem, i.e.,
NSString *p
This code worked for me...
NSString *pathAndFileName = [[NSBundle mainBundle] pathForResource:fileName ofType:nil]; if ([[NSFileManager defaultManager] fileExistsAtPath:pathAndFileName]) { NSLog(@"File exists in BUNDLE"); } else { NSLog(@"File not found"); }
Hopefully, it will help somebody...