作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何在 swift 中实现删除通知?因此,如果我有一个删除按钮,则会弹出“您确定吗”通知框,其中包含删除和取消选项,我以为它会在 info.plist 中,但没有看到任何内容,有人可以帮忙吗?
最佳答案
很简单,只需使用 IBAction
将按钮链接到您的代码,然后在函数中编写警报代码。
所以你的代码应该是这样的:
class ViewController: UIViewController {
@IBAction func showAlertButtonTapped(_ sender: UIButton) {
// create the alert
let alert = UIAlertController(title: "UIAlertController", message: "Would you like to continue learning how to use iOS alerts?", preferredStyle: UIAlertControllerStyle.alert)
// add the actions (buttons)
alert.addAction(UIAlertAction(title: "Continue", style:
UIAlertActionStyle.default, handler: nil))
alert.addAction(UIAlertAction(title: "Cancel", style: UIAlertActionStyle.cancel, handler: nil))
// show the alert
self.present(alert, animated: true, completion: nil)
}
}
关于ios - 如何在 swift 中实现 "delete"通知,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48026971/
我是一名优秀的程序员,十分优秀!