Notice
Recent Posts
Recent Comments
Link
투케이2K
23. (Objective-C/objc) url 인코딩 (encode) , 디코딩 (decode) 수행 실시 - URLHost 본문
Objective-C
23. (Objective-C/objc) url 인코딩 (encode) , 디코딩 (decode) 수행 실시 - URLHost
투케이2K 2022. 2. 24. 14:26[개발 환경 설정]
개발 툴 : XCODE
개발 언어 : OBJECTIVE-C
[testMain 함수]
// MARK: - [헤더 파일에 정의 없이 : void 메소드 구현]
- (void)testMain {
printf("\n");
printf("=============================== \n");
printf("[ViewController >> testMain() :: 테스트 메소드 수행] \n");
printf("=============================== \n");
printf("\n");
// [초기 문자열 데이터 선언]
NSString *strData = @"h@1ㅎA";
// [URL 인코딩 수행 실시 : 호스트 방식 설정]
NSString *encodeData = [strData stringByAddingPercentEncodingWithAllowedCharacters:[NSCharacterSet URLHostAllowedCharacterSet]];
// [URL 디코딩 수행 실시]
NSString *decodeData = [encodeData stringByRemovingPercentEncoding];
// [결과 출력 실시]
printf("\n");
printf("=============================== \n");
printf("[원본 :: %s] \n", strData.description.UTF8String);
printf("[URL 인코딩 :: %s] \n", encodeData.description.UTF8String);
printf("[URL 디코딩 :: %s] \n", decodeData.description.UTF8String);
printf("=============================== \n");
printf("\n");
}
[결과 출력]
반응형
'Objective-C' 카테고리의 다른 글
25. (Objective-C/objc) NSDate 사용해 24 시간 형식 현재 날짜 및 시간 출력 실시 (0) | 2022.02.28 |
---|---|
24. (Objective-C/objc) init 클래스 생성자 초기화 실시 및 리턴 포맷 데이터 확인 (0) | 2022.02.28 |
22. (Objective-C/objc) 프로토콜(Protocol) 사용해 헤더 정의 및 몸체 구현 실시 (0) | 2022.02.24 |
21. (Objective-C/objc) base64 인코딩 (encode) , 디코딩 (decode) 수행 실시 (0) | 2022.02.24 |
20. (Objective-C/objc) charAt 방식으로 문자열 한글자씩 출력 실시 - substringWithRange (0) | 2022.02.24 |
Comments