UITextField 自定义 InputView - 如何让 textFieldShouldReturn 触发?
我创建了一个自定义 inputView 并有一个“完成”按钮。有谁知道如何将完成按钮连接起来,使其与内置键盘上的返回键一样工作。
我基本上需要让 textFieldShouldReturn 方法为 UITextField 触发。
我知道我可以在文本字段上调用 resignFirstResponder,但这不会触发 textFieldShouldReturn 方法。
I have created a custom inputView and have a Done button. Does anyone know how I can wire the done button up to work the same as a return key on the built in keyboard.
I basically need to get the textFieldShouldReturn method to fire for a UITextField.
I know I can call resignFirstResponder on the textfield, but this does not fire the textFieldShouldReturn method.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果它是自定义输入视图和自定义“完成”按钮,为什么需要使用文本字段委托方法?您可以将完成按钮连接到您自己的操作。
如果您的
textFieldShouldReturn
方法中有一些通用代码,则可以将其移至另一个可以从委托方法和新操作中调用的方法。If it's a custom input view, and a custom "Done" button, why do you need to use the text field delegate methods? You can wire the done button to your own action.
If you have some common code in your
textFieldShouldReturn
method this could be moved out to another method which can be called from the delegate method and your new action.