【iOS】LocationManagerのevent handler

LocationManagerでGPSを使う。
plistに下記のkeyを追加する。
NSLocationWhenInUseUsageDescription

– (void)locationManager:(CLLocationManager *)manager
didUpdateToLocation:(CLLocation *)newLocation
fromLocation:(CLLocation *)oldLocation {
・・・
}

Leave a Reply