Преглед на файлове

1.音频分享数量超20个提示语未修改

huangxiaodong преди 10 месеца
родител
ревизия
989c653e0d

+ 1 - 1
创维盒子/双子星云手机/Class/Set/previewFile/previewAudioOrDocumentViewController.m

@@ -574,7 +574,7 @@
 - (void)gotoShareViewFun
 {
     if (_didSelectListArr.count > 20) {
-        [[iToast makeText:NSLocalizedString(@"share_max_count_tip2",nil)] show];
+        [[iToast makeText:NSLocalizedString(@"share_max_count_tip1",nil)] show];
         return;
     }
     

+ 7 - 1
创维盒子/双子星云手机/Class/Set/previewFile/previewFileAndFolderSecondViewController.m

@@ -496,7 +496,13 @@
     }
     
     if (_didSelectListArr.count > MaxShareNuber) {
-        [[iToast makeText:NSLocalizedString(@"share_max_count_tip2",nil)] show];
+        if(MaxShareNuber==20)
+        {
+            [[iToast makeText:NSLocalizedString(@"share_max_count_tip1",nil)] show];
+        }
+        else{
+            [[iToast makeText:NSLocalizedString(@"share_max_count_tip2",nil)] show];
+        }
         return;
     }
     

+ 8 - 1
创维盒子/双子星云手机/Class/Set/previewFile/previewFileAndFolderViewController.m

@@ -623,7 +623,14 @@
     }
     
     if (_didSelectListArr.count > MaxShareNuber) {
-        [[iToast makeText:NSLocalizedString(@"share_max_count_tip2",nil)] show];
+        if(MaxShareNuber==20)
+        {
+            [[iToast makeText:NSLocalizedString(@"share_max_count_tip1",nil)] show];
+        }
+        else{
+            [[iToast makeText:NSLocalizedString(@"share_max_count_tip2",nil)] show];
+        }
+        
         return;
     }