如何添加“完成”按钮以关闭数字键盘

发布于 2024-09-05 04:50:33 字数 354 浏览 2 评论 0原文

我按照教程进行操作:
http://www.neoos。 ch/news/46-development/54-uikeyboardtypenumberpad-and-the-missing-return-key

关闭数字键盘, 本教程将按钮作为子视图添加到数字键盘,

我的问题是,在同一视图中我也使用文本字段来输入文本,因此,如何区分数字字段和文本字段。这样我就可以相应地隐藏按钮视图。

I followed the tutorial:
http://www.neoos.ch/news/46-development/54-uikeyboardtypenumberpad-and-the-missing-return-key

to dismiss the number pad,
this tutorial add the button as sub view to the number pad,

my problem is, in the same view I am using the text field to enter text also,so, how to differentiate the number field, and text field. so that I can hide the button view accordingly.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

地狱即天堂 2024-09-12 04:50:33

Yoy 可以使用 UITextFieldDelegate 协议而不是 NSNotifications,并且在方法 textFieldDidBeginEditing:textFieldDidEndEditing: 中检查正在使用哪个字段。像这样的事情:

- (void) textFieldDidBeginEditing:(UITextField *)textField { 
if (textField == self.passwordField) {
  // add subview...
}

Yoy can use UITextFieldDelegate Protocol instead of NSNotifications, and inside methods textFieldDidBeginEditing: and textFieldDidEndEditing: check which field is being used. Something like this:

- (void) textFieldDidBeginEditing:(UITextField *)textField { 
if (textField == self.passwordField) {
  // add subview...
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文