I had been using following code to change text color of items which I add in UIActionSheet.:
UIActionSheet
- (void)willPresentActionSheet:(UIActionSheet *)act
Swift 4
let alert = UIAlertController(title: "title", message: "message", preferredStyle: .alert) alert.view.tintColor = UIColor.black self.present(alert, animated: true, completion: nil)