Ok, I am hoping someone can shed some light on this..
I am trying to create a vertical scrolling menu, using a CCMenu..
I have a CCMenu, it is sitting on a CCLayer. I thought if I used
-(void)ccTouchesBegan:(NSSet *)touches.... {
}
-(void)ccTouchesMoved:(NSSet *)touches.... {
}
I would be able to see all touches, even ones that went to the CCMenuItems. This doesn't appear to be so. If I touch open space I seem to get the touch calls, but if I touch a menu item I never see the calls, not even the touchbegan.
Are we supposed to get all the touch calls when using the NSSet methods? Looking at CCTouchDelegateProtocol.h that would be my impression.
Any help would be appreciated.