Просмотр исходного кода

1.修改iOS Apex Mobile Clear Login Info提示信息。

Pen Li 8 лет назад
Родитель
Сommit
f05a49ecd5
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      Apex Mobile/Apex Mobile/ToolslistViewController.m

+ 2 - 2
Apex Mobile/Apex Mobile/ToolslistViewController.m

@@ -139,9 +139,9 @@
     else if([type isEqualToString:@"clear_login"])
     {
         AppDelegate *appDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
-        NSString *msg = @"It will clear your account and password,are your sure?";
+        NSString *msg = @"Are you sure to clear saved login account and password?";
         if (appDelegate.isLogin) {
-            msg = @"It will clear your account and password then logout,are your sure?";
+            msg = @"Are you sure to logout current account and clear login information?";
         }
         UIAlertController *alertVC = [UIAlertController alertControllerWithTitle:@"Warning" message:msg preferredStyle:UIAlertControllerStyleAlert];