Nslog imagename in iphone
arrays, ios, iphone, objective-c
Solution
A `UIImage` doesn't store its file name, if you want to keep track of the names of the files they were created from, you will need to store them as well.
Problem
I have an `NSArray` with images. Image names is A,B,C,D. I need to `NSLog` the names of these images from the array ``` NSLog(@"Name == %@", [Array objectAtIndex:1]); ``` What do I have to use instead of this?