iPhone 滑动 UIKeyboard 切换视图
我想用我的应用程序及其键盘实现类似的目标。 http://www.youtube.com/watch?v=ajs1p5NCNw4 从 1:32 - 1:38。
如何通过水平滑动键盘来隐藏键盘并在其所在位置显示另一个视图?是否可以使用默认键盘,或者我应该使用我需要的几个按钮创建自己的视图,然后添加滑动操作? (我知道如何做到这一点,但我不确定苹果是否不会拒绝应用程序商店中的应用程序,因为我实现了自己的键盘或类似的东西)
I want to achieve something like this with my application and its keyboard.
http://www.youtube.com/watch?v=ajs1p5NCNw4 from 1:32 - 1:38.
How can you hide your keyboard by swiping it horizontally and show another view on its place? Is it possible with default keyboard or should I create my own view with few buttons which I'll need and then add the swiping? (I know how to do this, but I'm not sure if apple wouldn't deny the app in app store because I implement my own keyboard or something like that)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这些是自定义视图。它可能是启用分页的滚动视图和两个子视图(数字键盘是一个子视图,项目视图是另一个子视图)。
应用程序可能会使用自定义视图来代替系统键盘,例如通过设置文本字段的
inputView
属性。或者它可能只是将自定义视图显示为其顶级视图的子视图。Those are custom views. It might be a scroll view with paging enabled and two subviews (the numerical keypad is one subview and items view is the other subview).
The app might be using the custom view in place of the system keyboard, by setting the
inputView
property of a text field for example. Or it might just be displaying the custom view as a subview of its top-level view.