触摸并按住 TableViewCell 以显示(工具提示)弹出框,这在 iPhone 中可能吗?
根据图片,您能告诉我使用哪个函数来开发此功能吗? 我不确定,它是从 UIPopover 实现的吗? 任何想法,谢谢。
来源来自 Music.app iOS 5 beta 2
According to image could you please advise me which function use to develop this feature?
i'm not sure, is it implement from UIPopover?
any idea, thank you.
source from Music.app iOS 5 beta 2
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 UIGestureRecognizer。具体来说,您正在寻找的是
UILongPressGestureRecognizer
您应该实例化一个并将其附加到您想要跟踪手势的视图:
然后,在您的处理程序方法中,您将执行其余操作:
编辑:对于弹出窗口实现,请查看 WEPopover
You can use a UIGestureRecognizer. Specifically, what you are looking for is a
UILongPressGestureRecognizer
You should instantiate one and attach it to the view you would like to track the gesture on:
Then, in your handler method you would do the rest:
EDIT: for the popover implementation, have a look at WEPopover