Custom iOS notification sound
This article explains how to implement custom iOS notification sounds.
- Add audio files to the Xcode project
- Set notification soundswift
let content = UNMutableNotificationContent() content.title = title content.body = body content.sound = UNNotificationSound(named: UNNotificationSoundName(rawValue: "ra2-warning-zi-zi.wav"))