标签:
1.定位
定位使用CoreLocation库,引入CoreLocation/CoreLocation。创建CLLocationManager对象,使用startUpdatingLocation方法开始更新位置信息。
_mgr = [[CLLocationManager alloc] init]; [_mgr requestWhenInUseAuthorization]; _mgr.delegate = self; [_mgr startUpdatingLocation];
更新成功后,会调用CLLocationManagerDelegate的代理方法
-(void)locationManager:(CLLocationManager *)manager didUpdateLocations:(NSArray *)locations { CLLocation *location = [locations objectAtIndex:locations.count - 1]; NSLog(@"%f,%f\n",location.coordinate.latitude,location.coordinate.longitude); }
如果要停止更新,调用stopUpdatingLocation即可。
PS1:如果启动时提示是否打开定位,需要调用CLLocationManager对象的requestWhenInUseAuthorization。
PS2:定位用途的提示,在info.plist中添加NSLocationWhenInUseUsageDescription、NSLocationAlwaysUsageDescription添加提示
标签:
原文地址:http://www.cnblogs.com/punkrocker/p/4555170.html