Iphone 模拟器屏幕键盘问题

发布于 2024-12-11 19:51:05 字数 186 浏览 0 评论 0原文

我正在为我的 ViewBased Application 制作登录屏幕。我遇到了一个问题,当我单击 UITextField 时,屏幕屏幕会按预期弹出。但是,当我完成输入后,屏幕键盘并未从屏幕上删除。

任何人都可以建议我如何解决这个问题吗?

提前致谢

I am making a Login Screen for my ViewBased Application.I am having a problem, when i click on the UITextField the onscreen screen pops up as it should. But when i am done with typing the Onscreen Keyboard is not removing from the screen.

Can any one suggest me how can i solve this issue?

Thanks in advance

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

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

发布评论

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

评论(1

情丝乱 2024-12-18 19:51:05

将 UITextField 的委托设置为 ViewController 类。覆盖 textfieldShouldReturn 并调用 resignFirstResponder...

- (BOOL)textFieldShouldReturn:(UITextField *)textField {
  [textField resignFirstResponder];
  return NO;
}

编辑:

看到评论后看来您是初学者...这篇博文讲述了UITextField和委托。.另外当你有时间的时候,请阅读这篇 帖子(了解协议和委托。 .)

set the delegate of the UITextField to ViewController class. Override textfieldShouldReturn and call resignFirstResponder...

- (BOOL)textFieldShouldReturn:(UITextField *)textField {
  [textField resignFirstResponder];
  return NO;
}

EDIT:

After seeing the comment It seems you are a beginner...This blog post tells about UITextField and delegates..Also when you have time, please read this post too (to learn about protocols and delegates..)

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