我是swift的新手,所以我遇到编码问题。我想在键盘上的返回按钮上添加一个动作,这样当我键入它时,键盘会隐藏,场景(视图)会改变。那怎么办呢?
答案 0 :(得分:0)
你应该调用下面的函数
func textFieldShouldReturn(textField: UITextField!) -> Bool {
//textField code
textField.resignFirstResponder() //if desired
performAction()
return true
}
func performAction() {
//action events
}
研究我找到了answer