Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In Cocos2d, when enabling touches by using self.isTouchEnabled, I can use a method like this:

-(void)ccTouchesEnded:(NSSet *)touches withEvent:(UIEvent *)event

But, for some reason, this one doesn't work:

-(void)ccTouchEnded:(UITouch *)touch withEvent:(UIEvent *)event

Why is that?

share|improve this question
Can we see your code ? – MCKapur May 20 '12 at 23:07

2 Answers

up vote 1 down vote accepted

I haven't seen your code so I can't tell but have you registered

      CCTouchDispatcher

How to register :

       [[CCTouchDispatcher sharedDispatcher] addTargetedDelegate:self priority:0 swallowsTouches:YES];

How to unregister/remove to save memory:

[[CCTouchDispatcher sharedDispatcher] removeDelegate:self];
share|improve this answer
'sharedDispatcher' is deprecated. Is there another way? – Viktor Feb 21 at 12:23
You should use '[[CCDirector sharedDirector] touchDispatcher]' now, rest is good :) – Viktor Feb 21 at 12:31
Thanks! Havent used cocos2d in a long time so havent realized this – MCKapur Feb 21 at 12:59

Have a read of the documentation for touch events. All is explained there, http://www.cocos2d-iphone.org/wiki/doku.php/tips:touchdelegates

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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