zoukankan      html  css  js  c++  java
  • iOS 在viewController中监听Home键触发以及重新进入界面的方法

    第一步:
    创建2个NSNotificationCenter监听

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

    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(applicationDidBecomeActive:)
    name:UIApplicationDidBecomeActiveNotification object:nil]; //监听是否重新进入程序程序.


    第二步:
    实现2个NSNotificationCenter所触发的事件方法

    - (void)applicationWillResignActive:(NSNotification *)notification

    {
    printf("按理说是触发home按下 ");
    }

    - (void)applicationDidBecomeActive:(NSNotification *)notification
    {
    printf("按理说是重新进来后响应 ");
    }



    注: 在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.
    */
    }

  • 相关阅读:
    手动安装mysql-5.0.45.tar.gz
    Hadoop2.5.2+HA+zookeeper3.4.6详细配置过程
    大数据分析之技术框架整理
    docker安装
    CentOS 6.8安装Docker V1.0
    处理百万级的数据
    剑指 Offer 32
    剑指 Offer 32
    剑指 Offer 32
    剑指 Offer 31. 栈的压入、弹出序列
  • 原文地址:https://www.cnblogs.com/killiancheung/p/4624286.html
Copyright © 2011-2022 走看看