iOS5中如何显示被键盘隐藏的UIElements?
在 iOS 5 中,iPad 支持 3 种不同的键盘(普通、分离、上移)。以前,当键盘出现时,控制器将通过 KeyboardDidShowNotification 收到通知。在这里,如果我们有任何被键盘隐藏的 UI 元素,则会设置一个偏移量并将元素向上推(通过使用滚动视图)。在 iOS 5 中,我们必须根据键盘的类型进行处理。我们如何知道键盘类型。我们可以为新的键盘类型做什么?
谢谢, 杜赖。
In iOS 5 iPad supports 3 different keypads(normal, split, move-up). Previously when keypad appears controller will be notified though KeyboardDidShowNotification. Here, if we have any UI elemtns hidden by keypad will set an offset and push the elements upwards(by using scroll view). In iOS 5 we have to handle based on the type of the keypad. How do we know about the keypad type. What we can do for the new keypad-types?.
Thanks,
durai.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您想在单击编辑文本元素时自动滚动键盘下方隐藏的 textView 或 textField 元素,以下代码将在 ios5 上帮助您:
If you want to scroll automatically hidden textView or textField elements beneath keypad when click on edit text element, following code will help you for ios5:
如果您对
UIKeyboardWillShowNotification
或UIKeyboardWillHideNotification
做出反应,您应该没问题,因为它们仅在键盘以“正常模式”显示时发送。如果用户将其拉起或分开它,你会收到一个UIKeyboardWillHideNotification
(奇怪的行为,但苹果唯一的选择,使其向后兼容 iOS 4 应用程序)If you react on
UIKeyboardWillShowNotification
orUIKeyboardWillHideNotification
you should be fine as they are only sent when the keyboard is shown in "normal mode".. if the user pulls it up or splits it, you will recieve aUIKeyboardWillHideNotification
(strange behaviour but apple's only choice to make it backwards compatible with iOS 4 apps)