How can we change the global tint color on iOS7/iOS8 by code? I want to change multiple objects that use this property, but not change each one, that\'s why
Simply change the UIWindow 's tintColor in your application delegate, it's automatically passed as default to all its UIView descendants.
UIWindow
tintColor
UIView
[self.window setTintColor:[UIColor greenColor]];