Quellcode durchsuchen

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

Pen Li vor 8 Jahren
Ursprung
Commit
f05a49ecd5
1 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen
  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];