Please help!
When I use:
-(void) onExit {
[super onExit];
}
my app crashes if the screen is touched in the next scene after onExit is called. The error points to:
-(void) touches:(NSSet*)touches withEvent:(UIEvent*)event withTouchType:(unsigned int)idx
within "CCTouchDispatcher.m". However, when I remove the [super onExit]; line, it doesn't crash.
Any advice is appreciated! Thanks!