In my app there is UIScrollViewer(uiimageview inside this), when the userinteractionenabled=true, then no touch event fires in the app. How can i enable the touch events with userinteractionenabled=true.
I have tried using UITapGestureRecognizer, it works fine. But normally I am attaching an event to a button inside the touchesBegan event, as now i have applied the UITapGestureRecognizer, then in this I just do the things that needs to be done in touchesBegan event, but now click event of a button does not fire. I need to get these events in my app.
Please help me!