I am trying to get notified on all kinds of gesture that happen on my iOS app.
To be precise: I want to see how my users are interacting with my app It helps me to see if my controls are well made and self documented. For instance, it will allow me to see if users are trying to pinch in/out a knob instead of rotating it, etc.
What I tried to do at the moment was to have another invisible UIWindow on top of my application and record touch events passing through it (with touchesBegan, ...) but this doesn't tell me what iOS ended up with as a gesture.
If someone already has made something like this or has any tip on how to achieve such a thing, it would save me from headaches ;)
Thank you!