如何在cocos 2D中的某个时间段内查找视图是否被点击超过2次

2024-08-11移动开发问题
2

本文介绍了如何在cocos 2D中的某个时间段内查找视图是否被点击超过2次的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我正在用 cocos 2D 开发游戏.在我的游戏中,我需要点击我的视图一定次数.如果用户试图点击超出限制的视图,它应该显示一个警报.

I am developing a game in cocos 2D. In my game I need to tap my view a certain number of times. If the user attempts to tap the view beyond the limit, it should display an alert.

请有人帮我找出视图上的点击次数.最重要的是水龙头的数量不是同时的.在 Total 游戏中,用户只能点击一定次数,之后他们不应点击视图.

Please can someone help me to find number of taps on the view. Most important is number of taps is not simultaneously. In the Total game the user can tap only a certain number of times, after which they should not tap the view.

推荐答案

你可以用 NSTimeInterval 做到这一点.

You can do this with NSTimeInterval.

    //decalre this in interface file
    NSTimeInterval      mLastTapTime;

.

-(id)init
{
    if(self = [super init])
    {
         mLastTapTime = [NSDate timeIntervalSinceReferenceDate];
    }
    return self;
}

//在触摸方式中

    NSTimeInterval currentTime = [NSDate timeIntervalSinceReferenceDate];
    NSTimeInterval diff = currentTime - mLastTapTime;

    if(diff < 0.3 )
    {
         //do whatever you want if user press with 0.3second
    }
    mLastTapTime = [NSDate timeIntervalSinceReferenceDate];

这篇关于如何在cocos 2D中的某个时间段内查找视图是否被点击超过2次的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

The End

相关推荐

硬件音量按钮更改应用程序音量
Hardware Volume buttons change in app volume(硬件音量按钮更改应用程序音量)...
2024-08-12 移动开发问题
10

Cocos2d - 如何检查不同层中对象之间的交集
Cocos2d - How to check for Intersection between objects in different layers(Cocos2d - 如何检查不同层中对象之间的交集)...
2024-08-12 移动开发问题
8

恢复游戏 cocos2d
Resume game cocos2d(恢复游戏 cocos2d)...
2024-08-12 移动开发问题
6

突出显示朗读文本(在 iPhone 的故事书类型应用程序中)
Highlight Read-Along Text (in a storybook type app for iPhone)(突出显示朗读文本(在 iPhone 的故事书类型应用程序中))...
2024-08-12 移动开发问题
9

Cocos2D + 仅禁用 Retina iPad 图形
Cocos2D + Disabling only Retina iPad Graphics(Cocos2D + 仅禁用 Retina iPad 图形)...
2024-08-12 移动开发问题
10

如何将 32 位 PNG 转换为 RGB565?
How to convert 32 bit PNG to RGB565?(如何将 32 位 PNG 转换为 RGB565?)...
2024-08-12 移动开发问题
21