Develop
2014.05.12 21:58
[ios] 언어, 지역, 국가 설정 가져오기
Views 290724 Comment 0
아이폰에 설정된 지역 포맷(언어와 국가 정보)를 가져오려면 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 ...)
No. | Category | Subject | Author | Date | Views |
---|---|---|---|---|---|
49 | Develop | [android] Calling activity function from separate class | hooni | 2016.11.15 | 7412 |
48 | Develop |
[ios] FlckrFeed Example App (Swift)
![]() |
hooni | 2016.11.27 | 7495 |
47 | Develop | [android] dp, px 서로 변환 | hooni | 2016.10.21 | 7603 |
46 | Develop |
[ios] Requesting Location Permissions in iOS
![]() |
hooni | 2018.08.18 | 8163 |
45 | Develop |
[ios] 동영상 플레이어 샘플 (for Remote Url)
![]() |
hooni | 2017.02.07 | 8165 |
44 | Develop | [ios] Did UIScrollView End Scrolling? | hooni | 2016.04.19 | 8318 |
43 | Develop |
[ios] Facebook SDK 로그인 설명
![]() |
hooni | 2017.04.19 | 9277 |
42 | Develop |
[ios] UUID 생성 + Key Chain 연동
![]() |
hooni | 2016.05.13 | 10177 |
41 | Develop | [c] 프로세스 검사하기 | hooni | 2013.04.23 | 11659 |
40 | Develop |
[ios] 동영상 플레이어 샘플 (for PIP Player)
![]() |
hooni | 2017.03.15 | 12911 |
39 | Develop |
Mac OS 에 Jenkins 설치하기 (Homebrew)
2 ![]() |
hooni | 2017.03.15 | 13250 |
38 | Develop |
[iphone] 아이폰 어플 모음 ㅋㅋ
![]() |
hooni | 2013.04.23 | 13707 |