Hi,
i would like to know how i can access the name of an image when the syntax is something like that:
NSArray* imgArray =[[NSArray alloc] initWithObjects:
[UIImage imageNamed:@"test_01.png"],
[UIImage imageNamed:@"test_02.png"],
[UIImage imageNamed:@"test_02.png"], nil];
If i print out a specific index, i get the address.
NSLog(@"TEST: %@", [imgArray objectAtIndex:1]);
Output:
TEST: <UIImage: 0x4b12cd0>
How do i get the stringvalue? Any ideas? Thanks for your time.