let speechSynth = AVSpeechSynthesizer()
@IBAction func sayName(_ sender: Any) { //UI요소
let name: String = nameField.text ?? ""
let message: String = "안녕하세요, \(name)님"
helloLabel.text = message
var utterance = AVSpeechUtterance(string: message)
speechSynth.speak(utterance)
}
'PROGRAMMING CODE > SWIFT' 카테고리의 다른 글
[SwiftUI] 뷰에서 반복문 사용하기 (ForEach) (0) | 2023.06.26 |
---|---|
[SwiftUI] 버튼을 함수로 리턴하기 (0) | 2023.06.26 |
[Swift] 기초 예제 5 (딕셔너리) (0) | 2023.06.08 |
[Swift] 기초 예제 4 (클래스, 복사) (0) | 2023.06.04 |
[Swift] 기초 예제 2 (함수연습) (0) | 2023.05.31 |