Contents

조회 수 270012 댓글 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
번호 분류 제목 글쓴이 날짜 조회 수
193 Develop [js] 사라지는 브라우저 hooni 2003.04.23 6857
192 Develop [js] 사진첩에 쓸 내용 - 마우스 오버로 바꾸기 hooni 2013.04.23 6338
191 Develop [js] 새로고침(refresh)방법과 다른 페이지 바꾸기.. hooni 2003.04.23 6521
190 Develop [js] 서서히 나타나는 화면.. ㅋㅋ hooni 2013.04.23 6196
189 Develop [js] 셀렉트박스(select)의 옵션(option) 동적으로 추가/제거 file hooni 2013.04.23 8060
188 Develop [js] 수명체크 프로그램 ㅋㅋ file hooni 2013.04.23 6839
187 Develop [js] 수학 공식을 제공하는 Math 객체 hooni 2013.04.23 15414
186 Develop [js] 순환참조에 의한 메모리 누수 관련 file hooni 2013.12.17 10846
185 Develop [js] 숫자만 입력하게 하는 자바스크립트 hooni 2013.04.23 6795
184 Develop [js] 스크롤 이벤트 막기 hooni 2015.04.14 1012
183 Develop [js] 스크롤을 포함한 마우스 위치 찾는 코드 hooni 2003.04.23 8505
182 Develop [js] 스타크래프트(starcraft).. file hooni 2013.04.23 6641
Board Pagination Prev 1 ... 50 51 52 53 54 55 56 57 58 59 ... 71 Next
/ 71