I am trying to find the full path for a file called 'file1.jpg'
I have verified that it is in the app bundle and yet when I run this code:
NSBundle* myBundle = [NSBundle mainBundle];
NSString* path = [myBundle pathForResource:@"file1" ofType:@"jpg"];
'path' doesn't have the path/file i'm expecting.
This is code directly from the Apple documentation...
Any ideas what I'm doing wrong?
G-Man