Any ideas how to handle tap duration in cocos2d?
I need to do something after the user holds his or her finger on a certain sprite for about 1-2 secs.
Thanks.
|
Any ideas how to handle tap duration in cocos2d? I need to do something after the user holds his or her finger on a certain sprite for about 1-2 secs. Thanks. | ||||
|
feedback
|
|
Save yourself a lot of manual work and use the UIGestureRecognizers for things like these. In this particular case you will want to use the UILongPressGestureRecognizer. Btw, gesture recognizers are built-in, ready to use if you use Kobold2D. | |||||
feedback
|
|
To use a UILongPressGestureRecognizer, you can do something like this:
Your long press handler could look like this:
When you're finished, don't forget to remove it.
| ||||
|
feedback
|
|
You need to do it the manual way:
If you want to handle multiple touches, you might need a way to attach and differentiate the BOOL flag and float ivar combination to each touch. I'd suggest creating an intermediate subclass between CCLayer and your implementation subclass so that you can hide the mechanism from the implementation subclass and also to allow easy reuse. | |||||||||||
feedback
|