标签:
有两种方法:
1、通过AppDelegate来判断;
2、在基类中创建NSNotification
- (void)viewDidLoad { [super viewDidLoad]; // 注册通知 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(hello) name:UIApplicationDidBecomeActiveNotification object:nil]; } - (void)hello { // todo }
版权声明:本文为博主原创文章,未经博主允许不得转载。
标签:
原文地址:http://blog.csdn.net/lvxiangan/article/details/47298907