Okay, I have a viewA with the subView viewB. Both of them have a gestureRecognizer assigned to them. Now I'm using
- (BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldRecognizeSimultaneouslyWithGestureRecognizer:(UIGestureRecognizer *)otherGestureRecognizer
to be able to call both of them at the same time. Now let's say that if gestureRecognizer gets activated, it calls
NSLog(@"This is...");
And if otherGestureRecognizer gets activated it calls
NSLog(@"Sparta!");
The Problem is that if both gestureRecognizers get activated at the same time, there's no order in which they are called, so sometimes
NSLog(@"Sparta!");
gets called first and sometimes it's the other way round. Is there a way to make sure that
NSLog(@"This is...");
always gets called first?