标签: ios swift
当应用程序转到ChatViewController时,我想以编程方式显示键盘并按下麦克风/听写按钮,因此它基本上就像是转向类似Siri的功能。请参阅下面的代码。
ChatViewController
@IBAction func micPressed(sender: AnyObject) { textField.becomeFirstResponder() /* Somehow simulate tapping the microphone key */ }
有办法做到这一点吗?