gpt4 book ai didi

ios - 如何在 swift 中实现 "delete"通知

转载 作者:行者123 更新时间:2023-11-30 11:54:06 24 4
gpt4 key购买 nike

如何在 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/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com