Buscar..


Sintaxis

  • AVSpeechSynthesizer () // Crea un sintetizador de voz
  • speaker.speakUtterance (voz) // Convierte el texto a voz

Parámetros

Parámetro Detalles
altavoz Objeto AVSpeechSynthesizer
habla Objeto AVSpeechUtterance

Creación de un texto básico a voz.

Use el método speakUtterance: de AVSpeechSynthesizer para convertir texto a voz. AVSpeechUtterance pasar un objeto AVSpeechUtterance a este método, que contiene el texto que desea que se pronuncie.

C objetivo

AVSpeechSynthesizer *speaker = [[AVSpeechSynthesizer alloc] init];
AVSpeechUtterance *speech    = [AVSpeechUtterance speechUtteranceWithString:@"Hello World"];
[speaker speakUtterance:speech];

Rápido

let speaker = AVSpeechSynthesizer()
let speech = AVSpeechUtterance(string: "Hello World")
speaker.speakUtterance(speech)


Modified text is an extract of the original Stack Overflow Documentation
Licenciado bajo CC BY-SA 3.0
No afiliado a Stack Overflow