ios – 仅在通知出现后触发(swift3)

我的代码使用datePicker,当datePicker被更改并匹配用户设备的当前日期时.它会发出通知.然而,一旦datePickers时间改变,AVIpeechUtterance我就会使用fires,而不是在通知出现时.我希望AVSpeechUtterance和通知同时被解雇.

import UIKit
import  AVFoundation
import UserNotifications

class ViewController: UIViewController {
@IBOutlet var datePicker: UIDatePicker!

@IBAction func datePicker(_ sender: Any) {
    let c = UNMutableNotificationContent()
    c.title = "Lets Roll"
    c.subtitle  = "s"
    c.body = "d"

    let begin = AVSpeechUtterance(string: " Hello ")

    let synthesizer = AVSpeechSynthesizer()

    begin.voice = AVSpeechSynthesisVoice(language: "en-US")
    begin.rate = 0.08

    synthesizer.speak(begin)

    let triggerDate = Calendar.current.dateComponents([.year, .month, .day, .hour, .minute], from: datePicker.date )
    let t = UNCalendarNotificationTrigger(dateMatching: triggerDate, repeats: false)
    let r = UNNotificationRequest(identifier: "any", content: c, trigger: t)

    UNUserNotificationCenter.current().add(r, withCompletionHandler: nil)
}}

APP DELEAGATE

  import AVFoundation
   import UIKit
   import UserNotifications

 enum NotificationName: String {
case mySpeechNotification
 }


   @UIApplicationMain
   class AppDelegate: UIResponder, UIApplicationDelegate, UNUserNotificationCenterDelegate {

var window: UIWindow?

func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
    if #available(iOS 10.0, *) {
        let center = UNUserNotificationCenter.current()
        center.delegate = self
        center.requestAuthorization(options: [.alert, .badge, .sound]) { (granted, error) in
            if error != nil {
                print("Ops, error trying to get authorization")
            } else {
                if !granted {
                    print("Dude, let me use notifications!")
                }
            }
        }
    }
    return true
}

 func userNotificationCenter(_ center: UNUserNotificationCenter, willPresent notification: UNNotification, withCompletionHandler completionHandler: @escaping (UNNotificationPresentationOptions) -> Void)     {
     print("Oh, will present a notification, let's see the identifier: \(notification.request.identifier)")
    if (notification.request.identifier == NotificationName.mySpeechNotification.rawValue) {
        print("Speaking...")
               } else {
        print("Nothing to say...")
    }

    completionHandler(.alert)
    let begin = AVSpeechUtterance(string: " Hello ")
    begin.voice = AVSpeechSynthesisVoice(language: "en-US")
    begin.rate = 0.08

    let synthesizer = AVSpeechSynthesizer()
    synthesizer.speak(begin)


}

  }

《ios – 仅在通知出现后触发(swift3)》

最佳答案 您可以在收到通知时执行语音操作.为此,您可以:

如果您的iOS 10以下,您可以在UIAppplicatinoDelegate上使用application:didReceiveLocalNotification:然后开始讲话.

实施的想法是检查通知上的一些值,以确保您触发的“语音通知”.

如果您使用的是iOS 10,则可以使用UNUserNotificationCenterDelegateExample here,您可以查看示例实现.

点赞