티스토리 뷰
CoreLocation을 사용하게 되면 대략 다음과 같이 사용하게 된다.
- (void) startLocationManager {
self.locationManager = [[CLLocationManager alloc] init];
self.locationManager.delegate = self;
[self.locationManager startUpdatingLocation];
}
- (void) locationManager:(CLLocationManager *)manager didUpdateLocations:(NSArray *)locations {
NSLog(@"didUpdateLocations");
}
- (void) locationManager:(CLLocationManager*)manager didFailWithError:(nonnull NSError *)error {
NSLog(@"didFailWithError");
}
iOS8에서는 위의 코드가 동작하지 않게 된다.
이유는 위치 정보를 사용하는 이유를 필수적으로 설정을 하여야 하는 문제가 있으며, 위치 정보에 대해서 상세히 설정 할 수 있게 되었다.
(항상 / App을 사용하는 동안 / 안 함)
iOS8이상부터 위치 정보를 사용하기 위해서는 Info.plist에 값을 넣어주어야 한다.
NSLocationAlwaysUsageDescription (항상 허용)
NSLocationWhenInUseUsageDescription (App을 사용하는 경우만 허용)
다음 그림과 같이 사용할 범위만 넣어주면 된다.
그리고 소스도 조금 변경되게 된다.
* App을 사용하는 경우에만 위치 정보 사용 요청할 경우
- (void) startLocationManager {
self.locationManager = [[CLLocationManager alloc] init];
self.locationManager.delegate = self;
if ([self.locationManager respondsToSelector:@selector(requestWhenInUseAuthorization)]) {
[self.locationManager requestWhenInUseAuthorization];
}
[self.locationManager startUpdatingLocation];
}
* 항상 허요하는 경우에 위치 정보 사용 요청할 경우
- (void) startLocationManager {
self.locationManager = [[CLLocationManager alloc] init];
self.locationManager.delegate = self;
if ([self.locationManager respondsToSelector:@selector(requestAlwaysAuthorization)]) {
[self.locationManager requestAlwaysAuthorization];
}
[self.locationManager startUpdatingLocation];
}
'Mobile > iOS' 카테고리의 다른 글
[iOS][NSUserDefaults standardUserDefaults] 사용하기 (0) | 2016.03.07 |
---|---|
[iOS]위치정보 사용 가능 확인 (0) | 2016.03.03 |
[iOS]8.0에서 사라진 UIActionSheet (0) | 2016.03.02 |
[iOS]presentModalViewController 대체 (0) | 2016.03.02 |
[iOS]Animation ViewController 전환 (0) | 2016.03.02 |
- Total
- Today
- Yesterday
- CentOS
- docker
- Kotlin
- Java
- Xcode
- cocoapods
- Spring
- SWIFT
- windows10
- ios
- intellij
- rxswift
- Gradle
- ubuntu
- php
- war
- Linux
- Python
- MySQL
- centos8
- android
- nodejs
- enum
- git
- Windows
- Codable
- tomcat
- go
- golang
- github
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |