Contents

Develop
2015.04.27 18:40

[ios] GPS 이용 상태 확인

Views 2934 Comment 0
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print

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),



?

  1. [ios] 배경에 Gradient 적용하기 (CAGradientLayer)

  2. Aspect Oriented Programming in Objective-C

  3. [ubuntu] 우분투 18.04에 PHP5 설치하기

  4. [c#] 툴바 소스.. 개인적으로 만드는거..

  5. [ios] APNS, Remote Push 사용자가 수신을 동의했는지 확인하기

  6. [ios] GMT Date와 Local Date 변환하기

  7. [ios] 카테고리 확장 메소드를 찾지 못하는 경우

  8. [js] 문자열에서 숫자만 걸러내기 (jQuery 안쓰고 정규표현식)

  9. [ios] Objective-C 에서 자주 사용하는 수학 함수와 유용한 Define

  10. [java] netty (비동기 이벤트 방식 네트워크 프레임워크) 사용법 #2 (client)

  11. [android] SQLiteOpenHelper를 이용한 DBManager

  12. [ios] 설정에서 푸시 알림(APNS) on/off 상태 확인

Board Pagination Prev 1 ... 4 5 6 7 8 9 10 11 12 13 ... 71 Next
/ 71