iOS CLLocationManager 바뀐점 8.0
.plist 파일에 다음 항목 추가
NSLocationWhenInUseUsageDescription
NSLocationAlwaysUsageDescription
string 값으로 위치 사용에 대한 안내문을 적어놓으면됨 (예: 사용자의 현재 위치를 받아옵니다)
사용자 현재 위치 허용에 대한 승인을 받는다
if ([locationManager respondsToSelector:@selector(requestWhenInUseAuthorization)])
[locationManager requestWhenInUseAuthorization];
if ([locationManager respondsToSelector:@selector(requestAlwaysAuthorization)])
[locationManager requestAlwaysAuthorization];
반응형
'iPhone' 카테고리의 다른 글
UIWebView remove top 20px (0) | 2015.02.04 |
---|---|
NSData dataWithContentsOfURL returns nil (0) | 2015.01.30 |
playing NSSound asynchronously (0) | 2014.01.27 |
ios version check (0) | 2014.01.03 |
ios7 setting status bar style (0) | 2014.01.03 |