I'm making a card game using cocos2d for iOS and the user can simply swipe the card upward to choose his card, which means he doesn't need to swipe anywhere else in the game. This might be a really dumb question, but even after scouring the Internet for the past two days, I couldn't find anything specific to implement Gesture recognition (namely, swiping upward) in one scene alone and not the entire app. I read the documentation for UISwipeGestureRecognizer documentation by Apple, numerous blogs and few other video tutorials. All I could find was implementing it in an app with a single scene. A little nudge in the right direction would be terrific. I really will appreciate it if you provide me with some sort of sample code as well. I've understood the concept of the methods CCTouchesBegan, etc. But I'm still blind as to how to implement swiping one of the two sprites(cards) in the PlayerScene (scene where players choose cards) alone.

Thanks a million in advance.

link|improve this question
UISwipeGestureRecognizer will not work, as you are using cocos2d. You will need to create your own gesture recognizer code. – Richard J. Ross III Dec 9 '11 at 16:18
That's sad. Could you please give me some sort of example code from where I can start working? I just have this horrible starting trouble cocos2d and obj C. I'm new to this. I read about manipulating AppDelegate.m applicationDidFinishLoading method but I'm still blind. Please help – Prst Dec 9 '11 at 16:22
Check out this topic here on the cocos2d forums: cocos2d-iphone.org/forum/topic/8929 I haven't used it however – Richard J. Ross III Dec 9 '11 at 16:34
@Richard: There's no reason why UISwipeGestureRecognizer shouldn't work because of cocos2d. It does work, all of the gesture recognizers work. – LearnCocos2D Dec 10 '11 at 1:20
Yes, it does work. – Danyal Aytekin Dec 10 '11 at 11:19
feedback

2 Answers

It's as simple as adding a UIGestureRecognizer at some point in time, then removing that gesture recognizer when you no longer need it. In your case that could be in the -(void) cleanup method of your scene. There's no reason why gesture recognizers need to be global.

You should check out Kobold2D (based on cocos2d), for which I created a super-easy wrapper for gesture recognizers. With that all you need to do is to set the corresponding "enabled" flag to YES and later to NO to start and stop gesture recognizers.

link|improve this answer
Actually, it is recommended to add / remove touch events on the -onEnter and -onExit methods. – Richard J. Ross III Dec 10 '11 at 15:35
Who does recommend that where? The only reason I can think of is that onEnter will only be called after any transition has finished, so adding the touch events there avoids receiving touch events during a transition. – LearnCocos2D Dec 11 '11 at 22:24
It is recommended in the cocos2d beginners guide, here cocos2d-iphone.org/wiki/doku.php/tips:touchdelegates – Richard J. Ross III Dec 12 '11 at 12:24
Ah yes. I love the cocos2d documentation. Usually doesn't tell you why you should favor doing one thing over another, just that it's "better" or "recommended". I suppose it's like I suspected, to avoid receiving touches during a transition. I can't imagine anything else. – LearnCocos2D Dec 14 '11 at 23:27
feedback

Can you add gesture recognizer to the "card object"? Or extend CCSprite class with the touches stuff? Just brainstorming

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.