marinofaggiana 4 年之前
父节点
当前提交
eaab2a4b80

+ 2 - 1
iOSClient/BrowserWeb/NCBrowserWeb.swift

@@ -57,7 +57,8 @@ class NCBrowserWeb: UIViewController {
             buttonExit.isHidden = true
         } else {
             self.view.bringSubviewToFront(buttonExit)
-            buttonExit.setImage(UIImage.init(named: "exit")?.imageColor(.systemBlue), for: .normal)
+            let image = NCUtility.shared.loadImage(named: "xmark", color: .systemBlue)
+            buttonExit.setImage(image, for: .normal)
         }
         
         loadWebPage(webView: webView!, url: URL(string: urlBase)!)

+ 1 - 1
iOSClient/Notification/NCNotification.swift

@@ -152,7 +152,7 @@ class NCNotification: UITableViewController, NCNotificationCellDelegate, NCEmpty
         cell.message.text = notification.message.replacingOccurrences(of: "<br />", with: "\n")
         cell.message.textColor = .gray
         
-        cell.remove.setImage(UIImage(named: "exit")!.image(color: .gray, size: 20), for: .normal)
+        cell.remove.setImage(UIImage(named: "xmark")!.image(color: .gray, size: 20), for: .normal)
         
         cell.primary.isEnabled = false
         cell.primary.isHidden = true

+ 1 - 1
iOSClient/Settings/CCAdvanced.m

@@ -258,7 +258,7 @@
     [row.cellConfig setObject:@(NSTextAlignmentLeft) forKey:@"textLabel.textAlignment"];
     [row.cellConfig setObject:[UIColor redColor] forKey:@"textLabel.textColor"];
     [row.cellConfig setObject:[UIFont systemFontOfSize:15.0] forKey:@"textLabel.font"];
-    [row.cellConfig setObject:[[UIImage imageNamed:@"exit"] imageWithColor:[UIColor redColor] size:25] forKey:@"imageView.image"];
+    [row.cellConfig setObject:[[UIImage imageNamed:@"xmark"] imageWithColor:[UIColor redColor] size:25] forKey:@"imageView.image"];
     row.action.formSelector = @selector(exitNextcloud:);
     [section addFormRow:row];