I want to used image view from nos. of image views in scroll view on single tapping any particular image view.
how can I get image tag from different image views on tapping on it
1.1k Views Asked by Harshal At
4
There are 4 best solutions below
0

Rather than use image views, you could use UIButtons with image views as their content.
That way, you'll get a callback when a given image is tapped with a reference to the button. From there you should be able to get the tag of that which has been tapped!
I hope this helps,
0

Create a button and set image as background.while creating button you can set tag like
button.tag=yourtag;//your tag integer value
[button addTarget:self action:@selector(buttonTouched:) forControlEvents:UIControlEventTouchDown];
[button setBackgroundImage:[UIImage imageNamed:@"img.png"] forState:UIControlStateNormal];
and implement this function in your clss
- (void)buttonTouched:(UIButton *)sender
{
NSLog(@"touched %i",[sender tag]);
}
while tapping the particular button this function will get called.
If you are insistent on using images instead of buttons you can use Gesture Recognizer. Create an imageView and enable its userInteraction
Now allocate a gesture Recognizer object and add it to your imageView...
Now in the selector "singleTap" you can do whatever your action is..
Hope this help...cheers....