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?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
A
UIImagedoesn’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.