In my application I have a lot of little UIImageViews and a view off to the side. What I need is that view off to the side to be able to detect which image view was tapped and give me all the information about it (much like with (id)sender) as well as its coordinates. What is the best way to do this?
iPhone SDK: detect view that was tapped
3.2k Views Asked by Matt S. At
3
There are 3 best solutions below
0

I would subclass UIImageView
and add a new property for the target view you would like to message. Then reenable userInteractionEnabled
and add a action to touchesUpInside.
In the action method of the custom subclass call a method on the target view in which you also give the object of the custom subview. Basically you use delegation and pass in the delegate call all parameters you need.
This is the internal class from my project. I think you get the idea. As an option you can create protocol for the owner (or delegate). You can obtain coords using
Here is the code: