From c84ec2e9471fc6f103062dcf1d9d2b356d3adfd9 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Sat, 30 Jul 2016 12:51:12 -0400 Subject: [PATCH] search bar cancel button color --- src/iOS/AppDelegate.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/iOS/AppDelegate.cs b/src/iOS/AppDelegate.cs index 5b4d32911..3d4e3d8e1 100644 --- a/src/iOS/AppDelegate.cs +++ b/src/iOS/AppDelegate.cs @@ -72,6 +72,8 @@ namespace Bit.iOS UINavigationBar.Appearance.ShadowImage = new UIImage(); UINavigationBar.Appearance.SetBackgroundImage(new UIImage(), UIBarMetrics.Default); UIBarButtonItem.AppearanceWhenContainedIn(new Type[] { typeof(UISearchBar) }).TintColor = primaryColor; + UIButton.AppearanceWhenContainedIn(new Type[] { typeof(UISearchBar) }).SetTitleColor(primaryColor, UIControlState.Normal); + UIButton.AppearanceWhenContainedIn(new Type[] { typeof(UISearchBar) }).TintColor = primaryColor; UIStepper.Appearance.TintColor = grayLight; UISlider.Appearance.TintColor = primaryColor;