Contents

Views 4749 Comment 0
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
HTTP(GET, POST) 프로토콜을 이용하여 서버와의 통신을 할때는 문자열의 인코딩을 신경써야 합니다.
Ajax와 같은 웹 프로그래밍에서는 URLEncode, URLDecode를 사용하는데요~

NSString 에서도 아래와 같이 변환해서 사용할 수 있습니다.
// 오리지널 메시지
NSString *message = @"Hello~
Welcome to hooni.net";
 
// URL Encode
NSString *escaped = [message
    stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
NSLog(@"escaped string :
%@", escaped);
 
// URL Decode
NSString *decoded = [escaped
    stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
NSLog(@"decoded string :
%@", decoded);


?

List of Articles
No. Category Subject Author Date Views
289 Develop How to Test SMTP AUTH using Telnet hooni 2018.04.05 6156
288 System/OS [mac] Mac OS에서 재생되는 사운드를 녹음하는 방법 file hooni 2016.10.03 6138
287 System/OS Apache CORS 설정 1 hooni 2020.09.04 6121
286 Develop [ios] NSString, RegularExpression Find/Replace hooni 2017.04.14 6113
285 Develop Laravel 5 Failed opening required bootstrap/../vendor/autoload.php hooni 2018.01.24 6109
284 System/OS [linux] 초간단 SquirrelMail 설치/설정 (다람쥐 메일) hooni 2017.12.11 6059
283 System/OS [mac] 맥(OSX)에서 NTFS, 윈도우에서 HFS+ 사용하기 file hooni 2014.03.12 6046
282 Develop [android] 버전 별 앱 알림 설정으로 이동하는 방법 file hooni 2016.11.28 6027
281 System/OS [linux] awk 명령어 hooni 2014.03.11 5992
280 System/OS Mac에서 Node.js 설치하기 file hooni 2018.09.28 5966
279 System/OS [mac] OS X 엘 캐피탄에서 Soudflower 사용하기 2 file hooni 2016.10.03 5927
278 Develop [ios] Swift 4 Singleton inheritance hooni 2018.10.31 5915
Board Pagination Prev 1 ... 70 71 72 73 74 75 76 77 78 79 ... 99 Next
/ 99