UIAlertController altera a cor da fonte

Aqui está o meu código que cria o 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)
    alertController.addAction(cancelAction)

    // Present the controller
    self.presentViewController(alertController, animated: true, completion: nil)

Não consigo descobrir como alterar a cor do texto das ações de cancelar e chamar. O texto do título está atualmente preto e os botões de cancelar e ligar estão brancos. Estou fazendo para torná-los todos pretos para melhor visibilidade. Alguma ideia? Obrigado!

questionAnswers(7)

yourAnswerToTheQuestion