UNNotificationSound不起作用

时间:2016-09-19 11:09:45

标签: audio notifications ios10

新iOS10用户通知框架的自定义声音无法正常工作。 同一个文件适用于旧的UILocalNotification,但现在始终播放默认的系统声音。当我设置为nil时,我没有声音,只是带有名字的init是有问题的

let notificationContent = UNMutableNotificationContent()
notificationContent.title = "XYZ"
notificationContent.body = "XYZ"
notificationContent.sound = UNNotificationSound(named: "sound_name.aif")

1 个答案:

答案 0 :(得分:4)

我更改了这一行:

notificationContent.sound = UNNotificationSound(named: "sound_name.aiff")

到:

notificationContent.sound = UNNotificationSound.init(named: "sound_name.aiff")

正如您所看到的,我将声音转换为*.aiff,在阅读API参考后,我将声音文件移至名为Sounds的文件夹中。

我确保我的声音文件不到30秒