远程通知没有声音

时间:2016-10-23 11:35:44

标签: notifications swift3 ios10

有人可以帮助我理解为什么我没有收到IOS 10 Swift 3中远程通知的声音。

这是我的代码: 的AppDelegate:

func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey : Any]?) -> Bool {
        let settings = UNUserNotificationCenter.current()
        settings.requestAuthorization(options: [.badge, .alert, .sound]) {(granted, error) in
        }
    return true
    }

    // Override point for customization after application launch.
    func application(_ application: UIApplication, didReceiveRemoteNotification userInfo: [AnyHashable : Any]) {
        let viewController = self.window?.rootViewController as! LoadingCloudDataViewController
        let notification: CKNotification = CKNotification(fromRemoteNotificationDictionary: userInfo as! [String: NSObject])
        if(notification.notificationType == CKNotificationType.query) {
            let queryNotification = notification as! CKQueryNotification
            let recordID = queryNotification.recordID
            viewController.fetchRecord(recordID: recordID!)
        }
    }

这是通知订阅代码:

func subscriptionNotificationsKcal() {
        publicDatabase = container.publicCloudDatabase
        let predicate = NSPredicate(format: "TRUEPREDICATE")
        let subscription = CKQuerySubscription(recordType: "Kcal", predicate: predicate, options: .firesOnRecordCreation)
        let notificationInfo = CKNotificationInfo()
        notificationInfo.alertBody = "New Calories Item was Added"
        notificationInfo.shouldBadge = true
        subscription.notificationInfo = notificationInfo
        publicDatabase?.save(subscription, completionHandler: ({returnRecord, error in
            if let err = error {
                print("subscription failed %@", err.localizedDescription)
            }else{
                print("sub success")
            }
        }))
    }

1 个答案:

答案 0 :(得分:0)

默认声音静音。要激活它,在本例中,请使用以下代码:

notificattionInfo.soundName = "default"
相关问题