我正在设计一个 iOS 应用程序,我希望当返回键在我的 iPhone 中按下时,它会指引我到下一个文本字段。
我发现了几个类似的问题,周围都有很好的答案,但是它们恰好都在 Objective-C 中,我正在寻找 Swift 代码,现在这就是我到目前为止得到的:
func textFieldShouldReturn(emaillabel: UITextField) -> Bool{
return true
}
它被放置在连接的文件中,并且控制器与包含文本字段的 UIView 相连,但是我不确定这是否是正确的位置。
好的,我试了一下,得到了这个错误:
//could not find an overload for '!=' that accepts the supplied arguments
func textFieldShouldReturn(textField: UITextField) -> Bool {
let nextTag: NSInteger = textField.tag + 1
// Try to find next responder
let nextResponder: UIResponder = textField.superview!.viewWithTag(nextTag)!
if (nextResponder != nil) {
// could not find an overload for '!=' that accepts the supplied arguments
// Found next responder, so set it.
nextResponder.becomeFirstResponder()
} else {
// Not found, so remove keyboard.
textField.resignFirstResponder()
}
return false // We do not want UITextField to insert line-breaks.
}