瀏覽代碼

Merge commit '9d338c74f2d052905881fcfbb4600e68520a5926' into HiBoxde1.0

huangxiaodong 1 年之前
父節點
當前提交
1590dff9a6

+ 3 - 1
创维盒子/双子星云手机/Class/Calculator/CalculatorViewController.m

@@ -364,7 +364,9 @@
                         [connectDeviceManager shareInstance].isFirstInputPwdDone = YES;
                         
                         [self.view removeFromSuperview];
-                        [[NSNotificationCenter defaultCenter] postNotificationName:ShowImgAndVoiceNotification object:nil];
+                        dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(1 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
+                            [[NSNotificationCenter defaultCenter] postNotificationName:ShowImgAndVoiceNotification object:nil];
+                        });
                     }
                 }
                 else{

+ 3 - 1
创维盒子/双子星云手机/Class/Controller/HWWebViewController.m

@@ -330,7 +330,9 @@
                         [connectDeviceManager shareInstance].isFirstInputPwdDone = YES;
                         
                         [self.view removeFromSuperview];
-                        [[NSNotificationCenter defaultCenter] postNotificationName:ShowImgAndVoiceNotification object:nil];
+                        dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(1 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
+                            [[NSNotificationCenter defaultCenter] postNotificationName:ShowImgAndVoiceNotification object:nil];
+                        });
                     }
                 }
                 else{

+ 1 - 1
创维盒子/双子星云手机/Class/Guide/inputPWDViewController.m

@@ -433,7 +433,7 @@
         [[NSNotificationCenter defaultCenter] postNotificationName:GuideOkNotification object:nil];
     }
    
-    dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(0.2 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
+    dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(1 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
         [[NSNotificationCenter defaultCenter] postNotificationName:ShowImgAndVoiceNotification object:nil];
     });