I\'m use the following code to present a UIAlertController action sheet with the item text as red. I\'ve used the tint property to set the color.
UIAlertCont
You can also change the app tint color in appdelegate.
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { self.window.tintcolor = [UIColor yellowColor]; return YES; }
works perfect for me.