I would like to create a custom UIGestureRecognizer for a "tickle"... in other words, detecting a swipeLeft followed by a swipeRight, twice, without lifting the finger.
I know I can create it by starting from scratch with a custom gesture, but then I'll need to implement all the 'touches' methods and basically re-invent the swipe gestures. Is there any way of creating a custom UIGestureRecognizer just by combining ones that already exist? In other words, a custom UIGestureRecognizer that extends a UISwipeGestureRecognizer?
Or will I need to build it from scratch? If so, does anyone know the underlying code for a swipe gesture?