双击查看特定部分的视图

发布于 2024-09-26 22:50:56 字数 119 浏览 3 评论 0原文

我有点堆积了一个功能,该功能应该在双击 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

梅窗月明清似水 2024-10-03 22:50:56

我们可以用 TouchBegan 检测

-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
     NSUInteger numTaps = [[touches anyObject] tapCount];
UITouch* t;

if([[event allTouches] count]==2)//double tap
    {
     t=[[[event allTouches] allObjects] objectAtIndex:0];
 CGPoint p1=[t locationInView:self.view];
     }

numTaps 给出的点击次数。

P1 有被攻丝的点。

一切顺利。

We can detect with touchesBegan

-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
     NSUInteger numTaps = [[touches anyObject] tapCount];
UITouch* t;

if([[event allTouches] count]==2)//double tap
    {
     t=[[[event allTouches] allObjects] objectAtIndex:0];
 CGPoint p1=[t locationInView:self.view];
     }

numTaps gives the nuber of taps .

P1 has the point where it is tapped.

All the best.

路弥 2024-10-03 22:50:56

使用

Point point = [touch locationInView:self.view];

use

Point point = [touch locationInView:self.view];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文