gpt4 book ai didi

ios - 如何在 iOS 中监听通知关闭事件?

转载 作者:技术小花猫 更新时间:2023-10-29 10:09:48 34 4
gpt4 key购买 nike

我正在监听为我的本地通知按下的操作,但是有没有办法确定用户何时关闭通知?

以下是我如何在我的 AppDelegate 中监听我的操作,但解雇并没有触发:

func application(application: UIApplication, handleActionWithIdentifier identifier: String?, forLocalNotification notification: UILocalNotification, completionHandler: () -> Void) {
var actionName: String? = nil

if let identifier = identifier {
switch identifier {
case "snoozeAction":
actionName = "snoozeActionTapped"
break
default: break
}

if let name = actionName {
NSNotificationCenter.defaultCenter().postNotificationName(name, object: nil)
}
}

completionHandler()
}

最佳答案

关闭通知不会唤醒您的应用程序,因此无法捕获它。

关于ios - 如何在 iOS 中监听通知关闭事件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30153519/

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