//import Speech
//import AVFoundation
// create a text field to show speech output
@IBOutlet weak var transcriptionTextField: UITextView!
// we need this audio player to play audio
var audioPlayer: AVAudioPlayer!
override func viewDidLoad()
{
super.viewDidLoad()
}
// this functio...