|
|
@@ -72,6 +72,8 @@
|
|
|
|
|
|
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(getCouldPhoneSysInfoFun:) name:getCouldPhoneSysInfoNotification object:nil];
|
|
|
|
|
|
+ [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(applicationDidBecomeActive:) name:UIApplicationDidBecomeActiveNotification object:nil];
|
|
|
+
|
|
|
[self.toolBar setHidden:YES];
|
|
|
[self.navigationBar setHidden:YES];
|
|
|
[self.navBarBGView setHidden:YES];
|
|
|
@@ -1252,4 +1254,9 @@
|
|
|
make.bottom.mas_equalTo(-TABBARHEIGHT);
|
|
|
}];
|
|
|
}
|
|
|
+
|
|
|
+- (void)applicationDidBecomeActive:(NSNotification *)notification
|
|
|
+{
|
|
|
+ [self beginShowAlertFun];
|
|
|
+}
|
|
|
@end
|