Play AVSpeechUtterance in local notification (swift3)

Hi @zalubski

I don’t think it’s possible. Custom notification sound should be an instance of the UNNotificationSound class, AVSpeechSynthesisVoice can’t help you with this.
It should look something like this:

content.sound = UNNotificationSound(named: soundName)

Nikita