How to replace the color of a single button in the AlertSheet?

How to replace the color of a single button in the AlertSheet?

If you are looking to use a destructive button you can change the style to destructive.
The below example will make delete red;
self.optionAlertController.addAction(UIAlertAction(title: "Delete", style: .destructive, handler: { (action: UIAlertAction!) in