Contents

Views 271682 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 Database [mysql] 중복데이터 삭제하는 초간단 쿼리 hooni 2017.11.22 3557
896 Develop [js] jQuery 셀 병합 1 file hooni 2014.09.23 3565
895 System/OS [android] 초간단 HTTP, POST 전송 샘플 1 file hooni 2017.02.16 3647
894 Etc 영어. 불규칙 동사 정리 file hooni 2017.10.04 3659
893 Develop [ios] 유용한 매크로 hooni 2014.03.26 3700
892 Develop [ios] UIWebView 캐쉬 삭제 hooni 2014.04.08 3709
891 Develop [ios] URL 파라미터 파싱~ hooni 2014.05.12 3737
890 Develop [ios] SQLite 사용하기(튜토리얼) + 샘플코드 file hooni 2014.03.28 3751
889 Develop [ios] iOS에서 디바이스 종류 알아오기 hooni 2014.05.24 3758
888 Develop [ios] iOS 의 인앱구매 소개 file hooni 2014.04.29 3899
887 Develop [php] 3 Ways to Detect Mobile or Desktop in PHP file hooni 2020.01.28 3986
886 Develop [ios] UDID 사용 제한에 따른 대안들 hooni 2014.03.13 4020
Board Pagination Prev 1 ... 19 20 21 22 23 24 25 26 27 28 ... 98 Next
/ 98