通知实现ios前后台切换管理

来源:互联网 发布:p2p对等网络监管 编辑:程序博客网 时间:2024/06/10 01:06
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(handleBackground) name:UIApplicationDidEnterBackgroundNotification object:nil];
    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(handleResignActive) name:UIApplicationWillResignActiveNotification object:nil];
    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(handleBecomeActive) name:UIApplicationDidBecomeActiveNotification object:nil];  
0 0