UIAlert控制器上的图标

时间:2016-01-29 03:37:14

标签: ios swift uialertcontroller

有没有人知道如何在UI警报控制器中添加图标,就像下面的图片所附的页面应用程序一样。

提前致谢。 :)

enter image description here

1 个答案:

答案 0 :(得分:5)

是的,这是可能的。您可以尝试设置动作的图像属性。您应该尝试以下代码

var okAction = UIAlertAction(title: "OK", style: .Default, handler: nil)
let img = UIImage(named: "ico_ok.png")
action.setValue(img, forKey: "image")
alert.addAction(action)