iOS 监听 Home键和从新进入程序


//监听是否触发home键挂起程序.app

[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(applicationWillResignActive)                                               name:UIApplicationWillResignActiveNotification object:nil];spa

//监听是否从新进入程序程序.orm

    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(applicationDidBecomeActive)                                                name:UIApplicationDidBecomeActiveNotification object:nil];server

相关文章
相关标签/搜索