Contents

조회 수 272127 댓글 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
번호 분류 제목 글쓴이 날짜 조회 수
625 Develop [js] jQuery 코드 작성시 편리한 HTML 템플릿 hooni 2013.12.17 33120
624 Develop [js] jQuery 치트 시트 hooni 2013.12.18 36304
623 Develop [js] jQuery 충돌 회피 hooni 2013.12.17 38377
622 Develop [js] jQuery 셀랙터(selector) 요약 hooni 2013.12.17 9440
621 Develop [js] jQuery 셀 병합 1 file hooni 2014.09.23 3567
620 Develop [js] jQuery 관련 사이트 링크 모음 hooni 2013.04.23 18280
619 Develop [js] jQuery 관련 문서 ㅎㅎ file hooni 2013.04.23 31257
618 Develop [js] jQuery plugin 요약 hooni 2013.12.20 10753
617 Develop [js] jQuery 배열 루프(each) hooni 2013.12.17 10025
616 Develop [js] jQjuery $ 활용 hooni 2013.12.17 8907
615 Develop [js] Javascript로 만든 포트리스 (2010) 5 file hooni 2017.03.03 2829
614 Develop [js] IE에서 인쇄 설정 팁 hooni 2013.04.23 10923
Board Pagination Prev 1 ... 14 15 16 17 18 19 20 21 22 23 ... 71 Next
/ 71