美文网首页
iOS 监听 Home键 UIApplicationWillRe

iOS 监听 Home键 UIApplicationWillRe

作者: _YZG_ | 来源:发表于2016-09-30 16:39 被阅读431次

    搞点监听

    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(applicationWillResignActive:)
                                                     name:UIApplicationWillResignActiveNotification object:nil]; //监听是否触发home键挂起程序.
        
    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(applicationDidBecomeActive:)
                                                     name:UIApplicationDidBecomeActiveNotification object:nil]; //监听是否重新进入程序程序.
    

    实现方法

    - (void)applicationWillResignActive:(NSNotification *)notification
    
    {
        printf("按理说是触发home按下\n");
    }
    
    - (void)applicationDidBecomeActive:(NSNotification *)notification
    {
        printf("按理说是重新进来后响应\n");
    }
    

    Home键按下,AppDelegate相应方法

    - (void)applicationDidEnterBackground:(UIApplication *)application {
        // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later.
        // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
    }
    

    相关文章

      网友评论

          本文标题:iOS 监听 Home键 UIApplicationWillRe

          本文链接:https://www.haomeiwen.com/subject/klxryttx.html