I want to listen to all the events that users perform in my app like zoom in, zoom out, double tap, single tap, swipe, scroll, button presses, etc. And also I want that listen to all the events in a single class so that I don't need to write some code in all the classes of my app.
I read many articles and stack overflow solutions but I did not find what I am looking for, only touch event I got so far using a subclass of UIApplication
class.
Is there any way that I can listen to all the events?
I also looked at the following solutions but nothing much I got.