투케이2K

70. (Objective-C/objc) NSLocale 사용해 디바이스 시스템 국가 (country) , 언어 (language) 설정 확인 실시 본문

Objective-C

70. (Objective-C/objc) NSLocale 사용해 디바이스 시스템 국가 (country) , 언어 (language) 설정 확인 실시

투케이2K 2022. 9. 21. 09:14

[개발 환경 설정]

개발 툴 : XCODE

개발 언어 : OBJECTIVE-C

 

[소스 코드]

// MARK: - [헤더 파일에 정의 없이 : void 메소드 구현]
- (void)testMain {
    printf("\n");
    printf("==================================== \n");
    printf("[ViewController >> testMain() :: 테스트 메소드 수행] \n");
    printf("==================================== \n");
    printf("\n");
    
    
    /*
     ------------------------------------
     [요약 설명]
     ------------------------------------
     1. NSLocale : 특정 지리적, 정치적 또는 문화적 지역 설정을 확인할 수 있습니다.
     ------------------------------------
     */
    
    
    // [try catch 구문 정의 실시]
    @try {
        
        // [NSLocale NSLocaleCountryCode 사용해 디바이스 현재 국가 , 언어 설정 확인]
        NSLocale *currentLocale = [NSLocale currentLocale];
        NSString *countryCode = [currentLocale objectForKey:NSLocaleCountryCode];
        NSString *languageCode = [currentLocale objectForKey:NSLocaleLanguageCode];
        
        
        // [로그 출력 실시]
        printf("\n");
        printf("==================================== \n");
        printf("[ViewController >> try :: 로직 처리 결과 확인] \n");
        printf("[countryCode :: %s] \n", countryCode.description.UTF8String);
        printf("[languageCode :: %s] \n", languageCode.description.UTF8String);
        printf("==================================== \n");
        printf("\n");
    }
    @catch (NSException *exception) {
        printf("\n");
        printf("==================================== \n");
        printf("[ViewController >> catch :: 예외 상황 확인] \n");
        printf("[name :: %s] \n", exception.name.description.UTF8String);
        printf("[reason :: %s] \n", exception.reason.description.UTF8String);
        printf("==================================== \n");
        printf("\n");
    }
}
 

[결과 출력]

 

 
반응형
Comments