通知聲音

可以為你的應用生成的通知提供自定義聲音。當系統顯示本地通知的警報或標記應用程式圖示時,它會播放此聲音(只要使用者未禁用通知聲音)。

預設值為 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"