CKNotificationInfo soundName не работает

Sbuscription создайте как показано ниже. Это работает, но нет звука, почему? Док говорит:if you specify the string default for this property, the system plays the default alert sound.

let s2 = CKSubscription(recordType: recordType, predicate: NSPredicate(format: "destination = %@", CKReference(recordID: CKRecordID(recordName: loggedInUserSettingRecordName!), action: .DeleteSelf)), options: .FiresOnRecordCreation)
s2.notificationInfo = CKNotificationInfo()
s2.notificationInfo.alertBody = " "
s2.notificationInfo.soundName = "default"
subscriptionsToSave.append(s2)
s2.notificationInfo.soundName = UILocalNotificationDefaultSoundName

тоже не работает

Ответы на вопрос(1)

Ваш ответ на вопрос