SNLocation是一款自带定位调用,地理编码,反地理编码的软件。
定位的配置 plist文件
#warning plist文件中添加 /* * NSLocationAlwaysUsageDescription String 应用程序始终使用定位服务 * NSLocationWhenInUseUsageDescription String 使用应用程序期间,可以使用定位服务 */
CLLocationManager//定位管理
desiredAccuracy //精度
distanceFilter //更新距离;
[CLLocationManager locationServicesEnabled];//检测定位是否可用
//设置代理 以下是代理方法
#pragma mark - 状态改变时调用
- (void)locationManager:(CLLocationManager *)manager didChangeAuthorizationStatus:(CLAuthorizationStatus)status
#pragma mark - 定位结果
- (void)locationManager:(CLLocationManager *)manager didUpdateLocations:(NSArray