조회 수 270771 추천 수 0 댓글 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
번호 분류 제목 글쓴이 날짜 조회 수
441 Develop [ios] iOS앱의 Xcode 빌드 과정 file hooni 2015.01.03 2375
440 Develop [ios] iOS 의 인앱구매 소개 file hooni 2014.04.29 3890
439 Develop [ios] iOS 앱 아이콘을 만드는 유틸 file hooni 2015.01.03 935
438 Develop [ios] iOS 사운드 관련 프레임워크 hooni 2014.04.18 3060
437 Develop [ios] iOS In App Purchase 코드 부분 샘플 2 hooni 2013.11.20 11325
436 Develop [ios] iOS In App Purchase 코드 부분 샘플 1 hooni 2013.11.20 11790
435 Develop [ios] iOS In App Purchase #2 (코드 구현) file hooni 2013.11.20 13801
434 Develop [ios] iOS In App Purchase #1 (코드 구현 전 웹 설정 작업) file hooni 2013.11.20 14548
433 Develop [ios] iOS 8 개발자가 우선 알아야 할 3가지 file hooni 2014.10.02 971
432 Develop [ios] iOS 7 이상 UIBarButtonItem 여백 file hooni 2014.03.27 4090
431 Develop [ios] iOS 6.0 이상 회전 하기 (이전 버전과 비교 변경 부분) file hooni 2014.01.27 34234
430 Develop [ios] iOS 4.0 beta 에서 3.1.3으로 다운그레이드 하는 법 file hooni 2013.04.23 37538
429 Develop [ios] In App Purchase 개발 hooni 2013.11.20 9288
428 Develop [ios] iCloud관련 저장 디렉토리 hooni 2013.04.23 29674
427 Develop [ios] IB 없이 개발하기 (html) secret hooni 2013.05.31 0
426 Develop [ios] Hybrid 앱 스터디 발표 자료 file hooni 2013.09.06 13795
Board Pagination Prev 1 ... 24 25 26 27 28 ... 53 Next
/ 53