Contents

조회 수 269966 댓글 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
번호 분류 제목 글쓴이 날짜 조회 수
661 Develop [ios] App States file hooni 2013.07.22 13195
660 Develop [html] 캐쉬된 웹페이지 사용하지 않도록 하는 방법 hooni 2003.04.23 13028
659 Develop [js] AngularJS를 소개합니다. file hooni 2014.01.06 13017
658 Develop [php] 심플한 게시판 ㅋㅋ 1 file hooni 2013.04.23 12993
657 Develop [js] 자바스크립트의 클로저 (JavaScript's Closure) hooni 2013.05.15 12979
656 Develop [c] 다중연결 서버 만들기 #1 - fork() 사용 file hooni 2013.04.23 12921
655 Develop [doc] UI개발시 유용한 소프트웨어 (개발 및 디버깅 툴) hooni 2013.04.23 12911
654 Develop [html] HTML5 튜토리얼 링크 ㅋㅋ hooni 2013.04.23 12816
653 Develop [c++] Win32 API 기본 출력인 MessageBox() 함수 사용 예제.. file hooni 2013.04.23 12645
652 Develop [c] flooding 알고리즘 미로 찾기(도스용) 소스코드 9 file hooni 2003.04.23 12517
651 Develop [ios] 네트워크 인디케이터(NetworkActivityIndicator) 작동 file hooni 2014.01.24 12493
650 Develop [php] php5.3부터는 eregi()대신 preg_match()를 사용 hooni 2013.11.18 12477
Board Pagination Prev 1 ... 11 12 13 14 15 16 17 18 19 20 ... 71 Next
/ 71