In my app I want to have the users tap on the left side of the screen to increase their speed and swipe on the right side to work a joystick. However, if the user keeps holding the left side, the joystick doesn't work right.
I am using touchesBegan, touchesMoved, etc. Is there a way I could cancel the info from the first touch and have do the joystick separately?
I already tried [self touchesCancelled: touches withEvent: event];
is there any other way?