Contents

조회 수 269549 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
아이폰에 설정된 지역 포맷(언어와 국가 정보)를 가져오려면 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
번호 분류 제목 글쓴이 날짜 조회 수
897 System/OS [android] 초간단 HTTP, POST 전송 샘플 1 file hooni 2017.02.16 3439
896 Develop [ios] 아이폰에서 진동(Vibrate) 기능 추가하기 hooni 2014.04.18 3447
895 Develop [js] jQuery 셀 병합 1 file hooni 2014.09.23 3488
894 Etc 영어. 불규칙 동사 정리 file hooni 2017.10.04 3494
893 Develop [ios] iOS에서 디바이스 종류 알아오기 hooni 2014.05.24 3641
892 Develop [ios] 유용한 매크로 hooni 2014.03.26 3650
891 Develop [ios] UIWebView 캐쉬 삭제 hooni 2014.04.08 3658
890 Develop [ios] URL 파라미터 파싱~ hooni 2014.05.12 3666
889 Develop [ios] SQLite 사용하기(튜토리얼) + 샘플코드 file hooni 2014.03.28 3693
888 Develop [php] 3 Ways to Detect Mobile or Desktop in PHP file hooni 2020.01.28 3716
887 Develop [ios] iOS 의 인앱구매 소개 file hooni 2014.04.29 3821
886 Develop [android] 코드에서 문자열로 Resource 가져오기 hooni 2015.07.09 3934
Board Pagination Prev 1 ... 19 20 21 22 23 24 25 26 27 28 ... 98 Next
/ 98