标签: ios swift xcode unusernotificationcenter unnotificationrequest
我正在尝试为我的UNNotification添加声音。我想使用AVFoundation中的iOS SystemSounds,而不是我自己的自定义声音或默认声音。我可以通过以下方式获得声音:
import AVFoundation ... let systemSoundID: SystemSoundID = 1016 AudioServicesPlaySystemSound(systemSoundID)
如何将此声音添加到我的通知中?