We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
when copy to clipboard , the selected string is not UTF8 encoded.
I have tested with English-only PDF, everything is OK except some NON-ascii characters .
When I tested with Chinese or Korean, it seems characters are not encoded properly.
How can I convert the selected string to UTF8 string?
Thanks in advance.
FYI, I used following code .
(void)contentView:(PDFPageContentView *)contentView copyMenuSelected:(NSString *)selectedString { UIPasteboard *pb = [UIPasteboard generalPasteboard]; [pb setString:selectedString]; }
The text was updated successfully, but these errors were encountered:
I can copy and paste a selected string on my Japanese PDF. Some UTF-8 characters may be not supported.
Sorry, something went wrong.
No branches or pull requests
when copy to clipboard , the selected string is not UTF8 encoded.
I have tested with English-only PDF, everything is OK except some NON-ascii characters .
When I tested with Chinese or Korean, it seems characters are not encoded properly.
How can I convert the selected string to UTF8 string?
Thanks in advance.
FYI, I used following code .
(void)contentView:(PDFPageContentView *)contentView copyMenuSelected:(NSString *)selectedString { UIPasteboard *pb = [UIPasteboard generalPasteboard]; [pb setString:selectedString]; }
The text was updated successfully, but these errors were encountered: