-
Notifications
You must be signed in to change notification settings - Fork 257
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
Not working in iOS 10? #26
Comments
replacing [pasteboard setValue:text forPasteboardType:@"public.text"]; with pasteboard.string = text; fixed it for me. |
@zwand19 submit a PR? |
XPanniX
added a commit
to XPanniX/CordovaClipboard
that referenced
this issue
Oct 24, 2016
As suggested by @zwand19 in VersoSolutions#26
Has this been merged/fixed? Same issue... |
We solved this by changing the pasteboardType. [_pasteBoard setValue:text
forPasteboardType:(NSString *)kUTTypeText]; New code: [_pasteBoard setValue:text
forPasteboardType:(NSString *)kUTTypeUTF8PlainText]; This solves the issue and works on iOS 9, 10 and 11. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I can't get any copy/paste functionality to work in iOS 10 using cordova-ios 4.1.1
The text was updated successfully, but these errors were encountered: