通知声音
可以为你的应用生成的通知提供自定义声音。当系统显示本地通知的警报或标记应用程序图标时,它会播放此声音(只要用户未禁用通知声音)。
默认值为 nil,表示你的通知没有播放声音。
要提供自定义声音,请将 .caf
,.wav
或 .aiff
文件添加到你的应用包中。不支持持续时间超过 30 秒的声音。提供不符合这些要求的声音将导致播放默认声音(UILocalNotificationDefaultSoundName
)。
Objective-C
UILocalNotification *notification = [UILocalNotification new];
notification.soundName = @"nameOfSoundInBundle.wav"; // Use UILocalNotificationDefaultSoundName for the default alert sound
迅速
let notification = UILocalNotification()
notification.soundName = "nameOfSoundInBundle.wav"