双击查看特定部分的视图
我有点堆积了一个功能,该功能应该在双击 UIView 上的某个位置后执行某个任务。我知道如何计算点击次数,但不知道如何确定哪个位置已被点击,我想与为执行此操作而指定的视图的 CGRect 进行比较。
提前致谢
I am bit stacked with a functionality that should perform a certain task after double taping on a certain place on UIView. I know how to count number of taps, but do not know how to determinate which place has been tapped and I guess to compare with CGRect of view which was specified for doing this action.
thanx in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我们可以用 TouchBegan 检测
numTaps 给出的点击次数。
P1 有被攻丝的点。
一切顺利。
We can detect with touchesBegan
numTaps gives the nuber of taps .
P1 has the point where it is tapped.
All the best.
使用
use