Good morning all,
Let say i have:
is there anyway i can track down which: image1.png or image2.png, i just clicked?
Let say i have:
Code:
NSArray imageNames = [NSArray arrayWithObjects:[UIImage imageNamed:"image1.png"], [UIImage imageNamed:"image2.png"]];
NSMutableArray imageViews = [[NSMutableArray alloc] init];
for( i=0; i < [imageNames count]; i++) {
UIImageView *tempImage = [[UIImageView alloc] initWithImage:[imageNames objectAtIndex:i]];
[imageViews addObject:tempImage];
}
is there anyway i can track down which: image1.png or image2.png, i just clicked?