An implementation in which iOS monitors whether a user touches a screen

Source: Internet
Author: User

A recent requirement in the project is that the user is prompted for 8 seconds if the user does not interact with the screen.

After Google and practice to find a way to achieve the following steps:

1. Let appdelegate inherit uiapplication rather than Uiresponser.

2. Overloaded Sendevent method.

-(void) Sendevent: (Uievent *) event
{
    Super sendevent:event];//here must not be missed, otherwise the app will not start successfully.
    
    nsset *alltouches = [Event Alltouches];
    if ([alltouches count] > 0)
    {
        Uitouchphase phase = ((Uitouch *) [alltouches Anyobject]). Phase;
        if (phase = = Uitouchphasebegan)
            NSLog (@ "Send event");
    }

3. In order to allow the appdelegate of the inherited uiapplication to work, it is necessary to main.m

Uiapplicationmain
Change to:
Uiapplicationmain (argc, argv, Nsstringfromclass ([Appdelegate class]), Nsstringfromclass ([Appdelegate class]);


Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.