Iphone 模拟器屏幕键盘问题
我正在为我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将 UITextField 的委托设置为 ViewController 类。覆盖 textfieldShouldReturn 并调用 resignFirstResponder...
编辑:
看到评论后看来您是初学者...这篇博文讲述了UITextField和委托。.另外当你有时间的时候,请阅读这篇 帖子(了解协议和委托。 .)
set the delegate of the UITextField to ViewController class. Override textfieldShouldReturn and call resignFirstResponder...
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..)