[[UITextField appearance] setTintColor:[UIColor myColor]];
[[UITextView appearance] setTintColor:[UIColor myColor]];
After setting UITextField
& UITextView
cursor color in appDelegate, suddenly I am facing that there is a lot of NavigationItemBar
image turn into default Blue color. It's actual color is not showing. The solution is to set each NavigationItemBar
image rapped up with this, UIImageRenderingModeAlwaysOriginal
Like:
`[[UIImage imageNamed:@"imageName.png"] imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal];`
I am just wondering is there any way to set this UIImage
property (UIImageRenderingModeAlwaysOriginal
) in appDelegate
? So that I don't have to change every place in my project, rather set in one place.
Thanks a lot in advance.