我想录制语音。任何人都可以提供代码帮助。我在iPad上使用快速游乐场。
import AVFoundation
import PlaygroundSupport
PlaygroundPage.current.needsIndefiniteExecution = true
let synthesizer = AVSpeechSynthesizer()
let utterance = AVSpeechUtterance(string: "Say Hello")
utterance.rate = 0.52
synthesizer.speak(utterance)