有两种方法:
1、通过AppDelegate来判断;
2、在基类中创建NSNotification
- (void)viewDidLoad { [super viewDidLoad]; // 注册通知 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(hello) name:UIApplicationDidBecomeActiveNotification object:nil]; } - (void)hello { // todo }
版权声明:本文为博主原创文章,未经博主允许不得转载。
时间: 2024-11-05 16:32:09