如何在不关闭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)
最佳答案
您可能想要创建自己的View Controller,在其中确定所有按钮的功能。但是,如果您确实要使用UIAlertController,则可以在用户单击“保持”按钮时再次显示相同的警报:
let keepAlert = UIAlertAction(title: "keep", style: .Default) { (action) -> Void in
self.presentViewController(newItemPrompt, animated: true, completion: nil)
println("keep alert view")
}
警报将消失一秒钟,然后重新出现。这并不理想,但这是一种解决方法。
关于ios - 如何快速禁用UIAlertController的解雇,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/28076438/