I have this snippet of objective c code:
UIImage *image = [ [UIImage alloc] initWithContentsOfFile:fileName];
fileName is set to "file1.jpg"
When I run the code, however, image is set to nil.
I know the file does exist I am guessing it has something to do with the path.
What path should I be using?