如何禁用在swift中解雇UIAlertController

时间:2015-01-21 20:42:54

标签: ios swift uialertcontroller

如何在不关闭UIAlertController的情况下运行“保持”按钮的操作? 我找到了禁用按钮的解决方案,但这不是我需要的。

newItemPrompt = UIAlertController(title: "title", message: "message", preferredStyle: UIAlertControllerStyle.Alert)

let cancelAction = UIAlertAction(title: "Cancel", style: UIAlertActionStyle.Default, handler: nil)
let okAction = UIAlertAction(title: "OK", style: UIAlertActionStyle.Default, handler: { (action) -> Void in
 println("ok")
 })
let keepAlert = UIAlertAction(title: "keep", style: .Default) {  (action) -> Void in
println("keep alert view")
}
newItemPrompt.addAction(okAction)
newItemPrompt.addAction(keepAlert)
newItemPrompt.addAction(cancelAction)
self.presentViewController(newItemPrompt, animated: true, completion: nil)

2 个答案:

答案 0 :(得分:0)

禁用该按钮可能是禁用该方法的唯一方法,无论是该方法还是删除代码。我会做更多的研究但是你现在可以做的就是:)

答案 1 :(得分:0)

您可能想要创建自己的视图控制器,您可以在其中决定所有按钮的功能。但是,如果您真的想使用UIAlertController,当用户点击" keep"时,您可以再次显示相同的警报。按钮:

let keepAlert = UIAlertAction(title: "keep", style: .Default) {  (action) -> Void in
self.presentViewController(newItemPrompt, animated: true, completion: nil)
println("keep alert view")
}

警报将消失一秒钟,然后重新出现。它并不理想,但它是一种解决方法。