在我的应用程序中,我希望在点击通知操作URL
时运行。问题是,当我运行应用程序时,它会将我置于前台但不运行(我添加到通知操作中)。这是我的代码:URL
.foreground
extension AppDelegate: UNUserNotificationCenterDelegate {
func userNotificationCenter(_ center: UNUserNotificationCenter, didReceive response: UNNotificationResponse, withCompletionHandler completionHandler: @escaping () -> Void) {
if response.actionIdentifier == "call" {
if let urled = URL(string: "tel://1234567891") {
UIApplication.shared.open(urled, options: [:])
}
}
}
}
任何人的帮助都会很棒:)感谢您的任何回答!