vote up 0 vote down star

hello, I trying to develop a game for iPhone by using cocos2d. I need DRAG option in cocos2d. Is it possible to implement drag option in cocos2d ?

flag

22% accept rate
I'm guessing yes, it is, using standard Cocoa Touch touch-handling code. However, you need to provide more details as to what you're trying to do. – Brad Larson Mar 5 at 15:52

1 Answer

vote up 0 vote down check

Its done well:

-(BOOL)ccTouchesMoved:(NSSet *)touches withEvent:(UIEvent *)event {

    UITouch *touch = [touches anyObject];

    CGPoint location = [touch locationInView: [touch view]];
    CGPoint convertedLocation = [[Director sharedDirector] convertCoordinate:location];
        //start ur logical code

}
link|flag

Your Answer

Get an OpenID
or

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