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.
What am I doing wrong?