zoukankan      html  css  js  c++  java
  • iOS 监听 出发 Home键 NSNotificationCenter UIApplicationWillResignActiveNotification

    第一步:
    创建2个NSNotificationCenter监听

    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(applicationWillResignActive:)
    name:UIApplicationWillResignActiveNotificationobject:nil];//监听是否触发home键挂起程序.
    
    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(applicationDidBecomeActive:)
    name:UIApplicationDidBecomeActiveNotificationobject: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. */ }

  • 相关阅读:
    k8s中文网
    python range用法
    python 日志滚动 分文件
    python 语法
    flask 中文编码解码
    python的杨辉三角
    mysql8.0.4以后修改密码方式变更
    flask学习视频
    oralce的lag和lead函数
    JNI 各类数据类型处理
  • 原文地址:https://www.cnblogs.com/javawebsoa/p/3215087.html
Copyright © 2011-2022 走看看