How to get global Tint color from Storyboard in Appdelegate class? Neither methods do not work:
UISwitch.Appearance.OnTintColor = Windows.TintColor;
UISwitch.Appearance.OnTintColor = UIApplication.SharedApplication.Delegate.GetWindow().TintColor;
I'm aware of that how to get tint color in controller:
var tintColor = View.TintColor;
But i just want to use global tint color from Storyboard outside of view controller and don't want set color in code.