-
Notifications
You must be signed in to change notification settings - Fork 291
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
CFURLCreateStringByAddingPercentEscapes is deprecated – warning suppressed #141
Comments
@appsunited Thanks for your suggestion and yes, we will remove suppressions in next updates, probably next one. Will keep you updated. |
adjust#141: fixed deprecated warnings
I created a PR (#583) to use Please take a look and review @uerceg Edit: updated my PR. It still uses |
Due the fact that CFURLCreateStringByAddingPercentEscapes is deprecated since iOS 9.0 the method [NSString stringByAddingPercentEncodingWithAllowedCharacters:] should be used instead.
Also we are not sure whether it's a good idea to suppress the warning via:
pragma clang diagnostic ignored "-Wdeprecated-declarations"
The text was updated successfully, but these errors were encountered: