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
Just add the tintColor after the presentViewController. Works on iOS 9.0.2
[self presentViewController:alertController animated:YES completion:nil]; [alertController.view setTintColor:[UIColor yellowColor]];