瀏覽代碼

1.修复修改密码后tabbar 不显示问题
2.尝试修复偶现获取不到磁盘空间问题

huangxiaodong 7 月之前
父節點
當前提交
39e75d676b

+ 1 - 1
创维盒子/双子星云手机/AppDelegate/Config/Notification.h

@@ -152,6 +152,6 @@
 #define setPlayerFullScreenNotification                 @"setPlayerFullScreenNot"
 
 /* PC扫码后*/
-#define PCDidLoginNotification                 @"PCDidLoginNoti"
+#define showTabbarNotification                 @"showTabbarNot"
 
 #endif /* Notification_h */

+ 4 - 4
创维盒子/双子星云手机/AppDelegate/PrefixHeader.pch

@@ -108,16 +108,16 @@ isBangsScreen; \
 //#define shareService   @"http://testprivacy.phone.armclouding.com:1801/h5/#/pages/fileSharing/index?productType=Private-X&token="
 
 //创维盒子 测试地址 正在使用
-//#define CloudService   @"http://testprivacy.phone.androidscloud.com:1801"
-//#define shareService   @"http://testprivacy.phone.androidscloud.com:1801/h5/#/pages/fileSharing/index?productType=Private-X&token="
+#define CloudService   @"http://testprivacy.phone.androidscloud.com:1801"
+#define shareService   @"http://testprivacy.phone.androidscloud.com:1801/h5/#/pages/fileSharing/index?productType=Private-X&token="
 
 //预生产环境
 //#define CloudService   @"http://testprivacy.phone.androidscloud.com:10900"
 //#define shareService   @"http://testprivacy.phone.androidscloud.com:10900/h5/#/pages/fileSharing/index?productType=Private-X&token="
 
 //生产环境
-#define CloudService   @"http://hiboxde.armclouding.com:7780"
-#define shareService   @"http://hiboxde.armclouding.com:7780/h5/#/pages/fileSharing/index?productType=Private-X&token="
+//#define CloudService   @"http://hiboxde.armclouding.com:7780"
+//#define shareService   @"http://hiboxde.armclouding.com:7780/h5/#/pages/fileSharing/index?productType=Private-X&token="
 
 #define AESCODEKEEYY @"fvO8gAfNSr1tbdQe"
 

+ 1 - 0
创维盒子/双子星云手机/Class/Set/ModifyPWD/ModifyPWDSecondViewController.m

@@ -302,6 +302,7 @@
         if ([vc isKindOfClass:[MySetViewController class]]
             ||[vc isKindOfClass:[mineViewController class]]){
             [self.navigationController popToViewController:vc animated:YES];
+            [[NSNotificationCenter defaultCenter] postNotificationName:showTabbarNotification object:nil];/*发送通知*/
             break;
         }
     }

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

@@ -704,6 +704,9 @@
     [self handelAudioPlayingViewFun];
     
     [self showTabbarFun];
+    
+    //尝试修复偶现获取不到磁盘空间问题
+    [self getExtraFilesByFrpHttpFun];
 }
 
 - (void)viewWillDisappear:(BOOL)animated{

+ 1 - 1
创维盒子/双子星云手机/mine/PCLoginViewController.m

@@ -168,7 +168,7 @@
 {
     //[self showTabbarFun];
     
-    [[NSNotificationCenter defaultCenter] postNotificationName:PCDidLoginNotification object:nil];/*发送通知*/
+    [[NSNotificationCenter defaultCenter] postNotificationName:showTabbarNotification object:nil];/*发送通知*/
 }
 
 //"pc_login_ing_tip" = "正在登录中…";

+ 1 - 1
创维盒子/双子星云手机/mine/mineViewController.m

@@ -41,7 +41,7 @@
     [self.navigationBar setHidden:YES];
     [self.navBarBGView setHidden:YES];
     
-    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(PCLoginDidPopFun)  name:PCDidLoginNotification  object:nil];
+    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(PCLoginDidPopFun)  name:showTabbarNotification  object:nil];
     
     [self drawAnyView];
 }