瀏覽代碼

UISearchBar: Fix wrong barbutton color on searchbar from blue to white

Carola Nitz 7 年之前
父節點
當前提交
5e08f4fec5
共有 1 個文件被更改,包括 1 次插入0 次删除
  1. 1 0
      Sources/VLCAppDelegate.m

+ 1 - 0
Sources/VLCAppDelegate.m

@@ -219,6 +219,7 @@ NSString *const VLCDropboxSessionWasAuthorized = @"VLCDropboxSessionWasAuthorize
     [[UITableView appearance] setTintColor:vlcOrange];
     [[UISwitch appearance] setOnTintColor:vlcOrange];
     [[UISearchBar appearance] setBarTintColor:vlcOrange];
+    [[UISearchBar appearance] setTintColor:[UIColor whiteColor]];
 }
 
 - (void)dealloc