UITextField 自定义 InputView - 如何让 textFieldShouldReturn 触发?

发布于 2024-12-05 04:45:52 字数 208 浏览 0 评论 0原文

我创建了一个自定义 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

燃情 2024-12-12 04:45:52

如果它是自定义输入视图和自定义“完成”按钮,为什么需要使用文本字段委托方法?您可以将完成按钮连接到您自己的操作。

如果您的 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文