Ios swift – Why is AVSpeechSynthesizer reproducing more information that my text?
I'm using AVSpeechSynthesizer for texts, here's relevant code.- guard let nonNilText = text else { return } let utterance = AVSpeechUtterance(string: nonNilText) utterance.voice = AVSpeechSynthesisVoice(language: Locale.current.identifier) utterance.rate = 0.4 synthesizer.speak(utterance) Everything works fine, but seems that in some devices, particularly…