I had been using following code to change text color of items which I add in UIActionSheet.:
UIActionSheet
- (void)willPresentActionSheet:(UIActionSheet *)act
For Swift you can do like this
let alertAction = UIAlertAction(title: "XXX", style: .default) { (action) in } alertAction.setValue(UIColor.red, forKey: "titleTextColor")