Kaynağa Gözat

1.后台进入要重新检测弹框流程

huangxiaodong 1 yıl önce
ebeveyn
işleme
8af6903ab4

+ 7 - 0
创维盒子/双子星云手机/NAS/NASViewController.m

@@ -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