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
Set your tint color in traitCollectionDidChange in a subclass of UIAlertController.
traitCollectionDidChange
UIAlertController
override func traitCollectionDidChange(previousTraitCollection: UITraitCollection?) { super.traitCollectionDidChange(previousTraitCollection) self.view.tintColor = UIColor.redColor() }