-
-
Notifications
You must be signed in to change notification settings - Fork 24
Unrecognized selector sent to instance in iOS14 beta #69
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
Comments
Yup, It is happening. Anyone found workaround or alternate solution? |
Same issue for me on iOS 14 released |
Also have this issue. So Time picker completely breaks any app thats running on iOS 14? |
The solution from this thread helped me. |
A PR is submitted to fix this NativeScript/NativeScript#8876 |
This was referenced Sep 23, 2020
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Which platform(s) does your issue occur on?
Please, provide the following version numbers that your issue occurs with:
tns --version
to fetch it) 6.7.8node_modules/tns-core-modules/package.json
file in your project) 6.5.10"tns-android"
and"tns-ios"
properties in thepackage.json
file of your project) iOS@6.5.2package.json
file of yourproject and paste your dependencies and devDependencies here)
Please, tell us how to recreate the issue in as much detail as possible.
npm install
DEVELOPER_DIR=/Applications/Xcode-beta.app/Contents/Developer tns debug ios
in terminal (you may have to open a simulator running iOS14 first)Is there any code involved?
I tracked it down to
_applyDialogSpinnersColors
here. Both selectors throw the error:nativescript-datetimepicker/src/datetimepicker.ios.ts
Lines 180 to 181 in d9a965f
My guess is that since you're accessing private scope in
_applyDialogSpinnersColors
, they broke it in iOS14 and either another workaround is needed, or at the very least atry/catch
The text was updated successfully, but these errors were encountered: