Contents

조회 수 269379 댓글 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 Develop [php] 웹 응용프로그램(engines) 모음 file hooni 2013.04.23 7513
896 System/OS 해커스랩 깨기.. 후후.. ㅋㅋ file hooni 2013.04.23 18410
895 Develop [c] 간단한 점 이동 샘플 소스코드 hooni 2013.04.23 6539
894 Develop [php] 웹 터미널 & 업로드 소스.. file hooni 2013.04.23 7216
893 Develop [c] 도스 공격(DoS Attack) 프로그램 file hooni 2013.04.23 11573
892 Develop [c] 콘솔에서 패스워드 입력시 문자 보이지 않게 하는 코드 file hooni 2013.04.23 8324
891 Develop [c++] MD5 구현 소스.. 퍼움.. file hooni 2013.04.23 24068
890 Develop [c] 무선 Radius Server 자료.. file hooni 2013.04.23 7258
889 Develop [c++] WinSock2.0 채팅 프로그램 ㅋㅋ file hooni 2013.04.23 8519
888 Develop [c++] 소켓 프로그래밍 관련 링크.. (퍼올려고 올린거) hooni 2013.04.23 7027
887 Develop [c] 퀵정렬(quick sort) 예제 소스.. file hooni 2013.04.23 7972
886 Develop [c] 확인해 볼거.. ㅡ,.ㅡ; file hooni 2013.04.23 7143
Board Pagination Prev 1 ... 19 20 21 22 23 24 25 26 27 28 ... 98 Next
/ 98