I want to build lock app if the user didn’t do any thing with the app after 2 min.
there is anything that can inform me every time the user made touch,scroll,pinch… on every screen in the app?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Create a subclass of UIApplication. Modify the following line in the main.m file:
Where CustomApplication is your UIApplication subclass name.
Now you can override the
-(void)sendEvent:(UIEvent *)eventmethod in your custom subclass. This method would be called for each and evrery event of the application, including the user interaction events.