-
-
Notifications
You must be signed in to change notification settings - Fork 740
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
iOS 14 unable to select date in inline datePickerStyle #505
Comments
@ivan-magda do you also face this issue in The |
@noorulain17 |
Hmm.. Technically all modes should have the problem. Thanks for reporting, I'll look into this. |
This solution works, but there's a small caveat. In iPhone X style phones, the notch corners wont trigger the dismiss action. Otherwise it works as expected.
This solution works, but there's a small caveat. In iPhone X style phones, the notch corners wont trigger the dismiss action. Otherwise it works as expected.
Fixed in #514 |
After #502 (Added background tap gesture to dismiss picker view - Background tap issue) clicks on date in the calendar dismisses the action sheet in
UIDatePicker.Mode.date
andUIDatePicker.Mode.dateAndTime
modes.https://github.com/skywinder/ActionSheetPicker-3.0/pull/502/files#diff-5334c1a36535b23b6b5af4fb0b6712f5R261-R267
The documentation of the UIGestureRecognizerDelegate.gestureRecognizer(_:shouldReceive:) stands out that you should return YES (the default) to allow the gesture recognizer to examine the touch object, NO to prevent the gesture recognizer from seeing this touch object.
The text was updated successfully, but these errors were encountered: