I have a view with many rotating and moving columns. To column i add UIView named element with image and title. For full understanding this image
My problem strange for me. I add to element tap gesture
gestureTap = [[UITapGestureRecognizer alloc] action:@selector(panoramaTap)]; [gestureTap setNumberOfTapsRequired:1]; [gestureTap setNumberOfTouchesRequired:1]; [gestureTap setDelegate:self]; [self addGestureRecognizer:gestureTap];
But panoramaTap:
work only in some area, which change after moving.
In app like this on iPad all work fine. What is affecting on gesture?