We are using a UIPickerView to allow a user to select from a list of options. We are adding UIPickerView as a subview of a container UIView. We a
Try This Sol:
Set gestureRecognizer as true to detect in all ios versions
Step 1: Add UIGestureRecognizerDelegate
Step 2: Add folloeing code into to your class file
- (BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldRecognizeSimultaneouslyWithGestureRecognizer:(UIGestureRecognizer *)otherGestureRecognizer
{
// return
return true;
}