[ios] GPS 이용 상태 확인
iOS 설정에서 GPS 설정 확인
[CLLocationManager locationServicesEnabled] == YES
앱에서 GPS 설정 확인
[CLLocationManager authorizationStatus] == kCLAuthorizationStatusDenied
이렇게 하면 편리함 ㅋㄷ
/* //결정 전 kCLAuthorizationStatusNotDetermined = 0, //제한 사용 kCLAuthorizationStatusRestricted, //이용 거부 kCLAuthorizationStatusDenied, //항상 이용 (백그라운드에서도; ex.지오펜스) kCLAuthorizationStatusAuthorizedAlways NS_ENUM_AVAILABLE(NA, 8_0), //앱이 사용중일때만 (포그라운드일때만) kCLAuthorizationStatusAuthorizedWhenInUse NS_ENUM_AVAILABLE(NA, 8_0), */ // 사용 예 if([CLLocationManager locationServicesEnabled] == YES && [CLLocationManager authorizationStatus] != kCLAuthorizationStatusDenied) { // show the map } else { // show error }
[원문]
// User has not yet made a choice with regards to this application
kCLAuthorizationStatusNotDetermined = 0,
// This application is not authorized to use location services. Due
// to active restrictions on location services, the user cannot change
// this status, and may not have personally denied authorization
kCLAuthorizationStatusRestricted,
// User has explicitly denied authorization for this application, or
// location services are disabled in Settings.
kCLAuthorizationStatusDenied,
// User has granted authorization to use their location at any time,
// including monitoring for regions, visits, or significant location changes.
kCLAuthorizationStatusAuthorizedAlways NS_ENUM_AVAILABLE(NA, 8_0),
// User has granted authorization to use their location only when your app
// is visible to them (it will be made visible to them if you continue to
// receive location updates while in the background). Authorization to use
// launch APIs has not been granted.
kCLAuthorizationStatusAuthorizedWhenInUse NS_ENUM_AVAILABLE(NA, 8_0),
번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 수 |
---|---|---|---|---|---|
723 | Develop | [ios] iphone SetDeviceOrientation 화면 강제 회전 | hooni | 2013.11.20 | 20244 |
722 | Develop | [js] 파이어폭스(Firefox;F/F)에서 outerHTML 작동하도록 만든 메소드 | hooni | 2013.04.23 | 20154 |
721 | Develop |
[ios] Objective-C에서 형식이 있는 문자열(Format Strings)에 사용할 수 있는 토큰들(Tokens)
![]() |
hooni | 2013.04.23 | 20049 |
720 | Develop | [java] 입출력 스트림 3부 (오브젝트) | hooni | 2013.04.23 | 19898 |
719 | Develop |
URI 인코딩, URL 인코딩
![]() |
hooni | 2013.04.23 | 19822 |
718 | Develop |
모터에 대한 pid 제어.. ㅎㅎ
![]() |
hooni | 2013.04.23 | 19733 |
717 | Develop |
[ios] 앱에서 다른 앱 실행시키기
![]() |
hooni | 2013.09.05 | 19697 |
716 | Develop | [ios] NSString 간단한 정규식 사용법 | hooni | 2014.01.28 | 19594 |
715 | Develop |
[js] 동적(innerHTML)으로 자바스크립트 실행하기..
2 ![]() |
hooni | 2013.04.23 | 19415 |
714 | Develop |
[ios] None IB vs. StoryBoard 샘플 소스
![]() |
hooni | 2013.09.06 | 19413 |
713 | Develop | [js] jQuery 관련 사이트 링크 모음 | hooni | 2013.04.23 | 19376 |
712 | Develop |
[vc++] 게임 소스 등.. ㅋㅋ
![]() |
hooni | 2013.04.23 | 19106 |