How can I change the color of the UIAlertView
button title.
The best way (And easiest) is the following:
alert = UIAlertController(title: "foo", message: "foo", preferredStyle: UIAlertControllerStyle.Alert)
alert.addAction.... foo
...foo
alert.view.backgroundColor = UIColor.orangeColor()
alert.view.tintColor = UIColor.orangeColor()
alert.view.layer.cornerRadius = 0.5 * alert.view.bounds.size.width
It gives also a plus effect of a "round faded orange circle" in the background.
Hope it helps