I have multiple UIImageViews
placed producing an NxN grid view on a UIView
added programmatically, and all have their userInteractionEnabled property set to YES.
EDITED
I now have another issue, where if I start dragging on a UIImageView and hover on other UIImageViews only the first one is calling touchesMoved method. E.g. a sample NSLog with the [[touches anyObject] view.tag] within touchesMoved method will print:
Log: touchesBegan for object with tag=123
Log: touchesMoved for object with tag=123
Log: touchesMoved for object with tag=123
...
Log: touchesEnded for object with tag=123
Is it any way to do that? I basically want to highlight the selected cell if the user drags over the UIImageViews dynamically.