Theme:
Ler um texto automático
Como eu faço para ler um texto automático usando o próprio smartphone?
Date: Monday, February 13, 2023
3 answers |
514 view(s)
by Mauricio Junior
Answers
Basta utilizar o AVFoundation no SwiftUI.
import AVFoundation
let synthesizer = AVSpeechSynthesizer( )
let utterance = AVSpeechUtterance(string: "Informação que eu preciso")
utterance.voice = AVSpeechSynthesisVoice(language: "pt-BR")
utterance.rate = 0.5
self.synthesizer.speak(utterance)
Assim o seu iPhone vai poder ler qualquer informação para o usuário. Tente colocar isso em um clique de um botão.
Monday, February 13, 2023
Mauricio Junior
Coloque o código
let synthesizer = AVSpeechSynthesizer()
Fora do body : some View
Monday, February 13, 2023
Mauricio Junior
Esse curso pode te ajudar a aprender mais sobre Swift e SwiftUI https://www.ecode10.com/counter/?desc=47
Thursday, August 10, 2023
Mauricio Junior