Contents

Views 269663 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
아이폰에 설정된 지역 포맷(언어와 국가 정보)를 가져오려면 NSLocale 클래스를 사용한다.

지역 포맷 가져오기
NSLocale *currentLocale = [NSLocale currentLocale];

언어 설정 보기
NSLocale *currentLocale = [NSLocale currentLocale];
NSString *languageCode = [currentLocale objectForKey:NSLocaleLanguageCode];
// ko (en ...)

국가 설정 보기
NSLocale *currentLocale = [NSLocale currentLocale];
NSString *countryCode = [currentLocale objectForKey:NSLocaleCountryCode];
// KR (US ...)

언어와 국가 한번에 가져오기 (locale identifier)
NSLocale *currentLocale = [NSLocale currentLocale];
NSString *lcid = [currentLocale localeIdentifier];
// ko_KR (en_US ...)

아이폰에 설정된 언어(지역 포맷 아님)를 가져오려면 다음과 같이 할 수 있다.
NSString *preferredLanguageCode =
    [[NSLocale preferredLanguages] objectAtIndex:0];
// ko (en ...)

또는 NSUserDefaults 클래스를 사용할 수도 있다.
NSUserDefaults *userDefaults = [standardUserDefaults];
NSArray *languages = [userDefaults objectForKey: @"AppleLanguages"];
NSString *preferredLanguageCode = [languages objectAtIndex:0];
// ko (en ...)


?

List of Articles
No. Category Subject Author Date Views
897 System/OS [android] 초간단 HTTP, POST 전송 샘플 1 file hooni 2017.02.16 3448
896 Develop [ios] 아이폰에서 진동(Vibrate) 기능 추가하기 hooni 2014.04.18 3452
895 Develop [js] jQuery 셀 병합 1 file hooni 2014.09.23 3488
894 Etc 영어. 불규칙 동사 정리 file hooni 2017.10.04 3501
893 Develop [ios] iOS에서 디바이스 종류 알아오기 hooni 2014.05.24 3645
892 Develop [ios] 유용한 매크로 hooni 2014.03.26 3654
891 Develop [ios] UIWebView 캐쉬 삭제 hooni 2014.04.08 3662
890 Develop [ios] URL 파라미터 파싱~ hooni 2014.05.12 3670
889 Develop [ios] SQLite 사용하기(튜토리얼) + 샘플코드 file hooni 2014.03.28 3697
888 Develop [php] 3 Ways to Detect Mobile or Desktop in PHP file hooni 2020.01.28 3720
887 Develop [ios] iOS 의 인앱구매 소개 file hooni 2014.04.29 3825
886 Develop [android] 코드에서 문자열로 Resource 가져오기 hooni 2015.07.09 3936
Board Pagination Prev 1 ... 19 20 21 22 23 24 25 26 27 28 ... 98 Next
/ 98