LoginSignup
0
0

More than 5 years have passed since last update.

Objective-CでNSStringをDecode

Last updated at Posted at 2013-05-09

stackoverflowで見つけた方法で、うまく動作しました。
以下のように関数化しています。

- (NSString*) decodeFromPercentEscapeString:(NSString *) string {
    return (__bridge_transfer NSString *) CFURLCreateStringByReplacingPercentEscapesUsingEncoding(NULL, (__bridge CFStringRef) string, CFSTR(""), kCFStringEncodingUTF8);
} 

参考ページ

0
0
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0