如何在 swift 中为警报视图设置标签。我无法设置 tag alert.tag = 1
,如果我这样做了,我会收到类似'UIAlertController' does not have a member named 'tag'
. 下面是我写的代码,
var alert = UIAlertController(title: "Title", message: "Message", preferredStyle: UIAlertControllerStyle.Alert)
alert.addAction(UIAlertAction(title: "YES", style: UIAlertActionStyle.Default, handler:{ (ACTION :UIAlertAction!)in }))
alert.addAction(UIAlertAction(title: "NO", style: UIAlertActionStyle.Default, handler:{ (ACTION :UIAlertAction!)in }))
alert.tag = 1 // Error is shown here
self.presentViewController(alert, animated: true, completion: nil)
我们曾经在 Obj-C 中为警报视图设置标签。有人可以帮我解决这个问题。提前致谢。