this question is similar to this
But, instead of changing the color in every UIAlertController
, I want to change it universal like 'AppDelegate'. So, If I change the color in one place, then all the alert controller action button should change to the new color. My question is:
- Is it possible to do it from AppDelegate? If not, how can I do it?
- Will Apple approve to change the button color to custom in all iOS Versions?
Yes,you can do it. Do one thing:
UIAlertController
Class sayMyAlertController
viewDidLoad
method writeself.view.tintColor = [UIColor requiredColor];
it will change the button color. It will work :)