tags:

views:

66

answers:

1

Is it possible to know which of the several controls contained in my ViewController's main view is affected by the present touch event?

+1  A: 

Compare the location of the touch to the frames of each of the subviews

Corey Floyd
You can use `hitTest` to make it even easier.
pgb