I want to used image view from nos. of image views in scroll view on single tapping any particular image view.
|
feedback
|
|
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.... | |||||
feedback
|
|
Create a button and set image as background.while creating button you can set tag like
and implement this function in your clss
while tapping the particular button this function will get called. | |||
|
feedback
|
|
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, | ||||
|
feedback
|
|
You can do according to what Nick has suggested. Or else, you can create a subclass of the imageview. Set frame and tag to it. In touchesEnded method of this custom class, you can find which imageview it is based on its tag. | |||
|
feedback
|