Continuous touches on susequent UIImageViews
Hi,
I have custom UIImageView with touch enabled and touchesBegan, touchesMoved etc methods and it detects the touches.
Now, I want to keep multiple of those custom UIImageViews side by side. But when user start touch on one UIImageView and continue on second UIImageview, the touches are still detected by first one and not second one.
How to make second UIImageView to detect the continuous touch started from first UIImageView?
I know this is possible if I make one big custom UIImageView and add small UIImageViews in it, but I want to keep touch logic separate in each views.
Please help me out!!!
|