Does anyone know how to add icons in the UI Alert Controller the way the Pages App has it as attached i the image below.
Thanks in advance. :)

Yes that is possible. You can try to set image property 0f action. You should probably try out following code
var okAction = UIAlertAction(title: "OK", style: .Default, handler: nil)
let img = UIImage(named: "ico_ok.png")
action.setValue(img, forKey: "image")
alert.addAction(action)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With