Contents

Views 4751 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
913 Develop [js] Javascript로 만든 포트리스 (2010) 5 file hooni 2017.03.03 5482
912 Develop [Android Error] The number of method references in a .dex file cannot exceed 64K hooni 2016.11.10 5486
911 Develop [php][laravel] 라라벨 개발환경 세팅하기 (Mac, Window) 2 file hooni 2017.12.15 5550
910 Develop [js] show/hide 이벤트 감시 (Observing show/hide event) hooni 2021.02.03 5566
909 System/OS How to Install and Use wget on Mac file hooni 2020.09.03 5592
908 Develop [ios] 웹뷰 history.back() ㅋㄷ file hooni 2016.06.27 5671
907 Etc 영어. 불규칙 동사 정리 file hooni 2017.10.04 5687
906 Database [mysql] ERROR 1820 (HY000): You must reset your password using ALTER USER statement before executing this statement. hooni 2017.12.15 5722
905 Develop [php] Connect to Firebase Console in Laravel file hooni 2018.05.09 5732
904 Develop [ios] UITableView 특정 Row만 Update hooni 2014.04.08 5792
903 Etc 아이폰의 터치스크린 정확도 file hooni 2015.04.01 5864
902 System/OS How to Setup an Email Server on CentOS 7 hooni 2018.04.05 5914
Board Pagination Prev 1 ... 18 19 20 21 22 23 24 25 26 27 ... 99 Next
/ 99