在屏幕顶部显示文本字段的键盘
在我的iPhone应用程序中,我的问题是我在屏幕底部有一个文本字段,所以当键盘出现时,他隐藏了文本字段,有没有办法在屏幕顶部显示键盘?
In my iPhone apps, my problem is that I have a textfield at the bottom of the screen, so when the keyboard appear, he hides the textfied, there is a way to show the keyboard on the top of the screen?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
当键盘出现时,您应该移动您的视图。
代码是:
在 .m 文件中
在 .h 文件中,
这里
定义在
@implementation
之前。You should move your view when the keyboard appears.
The code is:
In .m file
In .h file
here
is defined before
@implementation
.你应该设计你的视图,让它随着键盘向上移动,iPhone 用户习惯键盘总是在屏幕底部,所以这会违背 HIG
You should design your view so that it shifts up with the keyboard, iPhone users are used to the keyboard always being on the bottom of the screen so this would go against the HIG