UITableviewCell 中的触摸持续时间
有没有办法在不子类化的情况下获取 UITableViewCell 的触摸持续时间?原因是我想在用户持有单元格时显示模态视图控制器,并在用户点击单元格时显示详细视图。我已经有一个使用默认 UITableViewCells 的工作应用程序(但最近发现需要保持事件),这就是我真的不想使用子类化的原因。有什么想法吗?
非常感谢
朱尔斯
Is there a way to get the touch duration of a UITableViewCell without subclassing? The reason being I want to display a modal view controller when the user holds a cell and display a detail view when the user taps a cell. I already have a working app using default UITableViewCells (but recently found a need for the hold event) which is the reason I dont really want to have to use subclassing. Any thoughts?
Many thanks
Jules
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您可以接受 3.2+ 兼容性,您可以为不同类型的触摸(长触摸)添加
UIGestureRecognizer
。If you can live with 3.2+ compatibility, you can add
UIGestureRecognizer
for different type of touches (long touch).