Iphone/ipad 通过触摸事件自定义控制
我想在用户点击屏幕的特定部分时创建分段控件,就像 OliveTree 圣经软件应用程序所做的那样。
当用户点击应用程序时,它会自动在点击部分上方显示分段控件,或者像 iPhone 中的复制、选择、粘贴分段控件一样。
如何做到这一点?
提前致谢。
I want to create segmented control when the user tap the specific portion of the screen just like the OliveTree bible software application makes it.
When the user tap the verses the app, it automatically shows the segmented controls right above the tap portion or like the copy,select,paste segmented control in iphone.
How to do this?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您想要使用
UIMenuController
类。您可以使用UILongPressGestureRecognizer
来触发此操作,并使您的类成为第一响应者并相应地设置UIMenuController
。这是一个示例: UIMenuController 自定义项目
这里是苹果文档:http://developer.apple.com/library/iOS/#documentation/iPhone/Reference/UIMenuController_Class/UIMenuController.html
You want to use the
UIMenuController
class. You can use aUILongPressGestureRecognizer
to trigger this, and make your class the first responder and setup theUIMenuController
accordingly.Here is one example: UIMenuController Custom Items
And here is apple docs: http://developer.apple.com/library/iOS/#documentation/iPhone/Reference/UIMenuController_Class/UIMenuController.html