UIAlertController change font color
Here's my code that creates the UIAlertController // Create the alert controller var alertController = UIAlertController(title: "Are you sure you want to call \(self.number)?", message: "", preferredStyle: .Alert) // Create the actions var okAction = UIAlertAction(title: "Call", style: UIAlertActionStyle.Default) { UIAlertAction in var url:NSURL = NSURL(string: "tel://\(self.number)")! UIApplication.sharedApplication().openURL(url) } var cancelAction = UIAlertAction(title: "Cancel", style: UIAlertActionStyle.Cancel) { UIAlertAction in } // Add the actions alertController.addAction(okAction)