获取经纬度

//1.导入头文件
#import <CoreLocation/CoreLocation.h>
//2.设置代理CLLocationManagerDelegate
@interface ShopMyInfoViewController ()<CLLocationManagerDelegate>
//3.viewDidLoad中调用getJingWeiDu方法
//4、自动调代理方法 locationManager
// 经纬度
- (void)locationManager:(CLLocationManager *)manager didUpdateToLocation:(CLLocation *)newLocation fromLocation:(CLLocation *)oldLocation
{
    NSLog(@"经度%f,纬度%f",newLocation.coordinate.longitude, newLocation.coordinate.latitude);
    [[UserModel sharedInstanced]setlongitude:[NSString stringWithFormat:@"%f",newLocation.coordinate.longitude]];
    [[UserModel sharedInstanced]setlatitude:[NSString stringWithFormat:@"%f",newLocation.coordinate.latitude]];
    //一直定位
    [manager stopUpdatingLocation];
}
- (void)getJingWeiDu{
    self.locationManager=[[CLLocationManager alloc]init];
    //期望精度
    self.locationManager.desiredAccuracy=kCLLocationAccuracyBest;
    //大约变化10米更新一次
    //    self.locationManager.distanceFilter=10;
    //认证NSLocationAlwaysUsageDescription
    if([[UIDevice currentDevice] systemVersion].doubleValue>8.0)//如果ios是8.0以上版本
    {
        if([self.locationManager respondsToSelector:@selector(requestAlwaysAuthorization)])//位置管理对象中有requestAlwaysAuthorization这个行为
        {
            //运行
            [self.locationManager requestAlwaysAuthorization];
        }
    }
    
    self.locationManager.delegate=self;
    [self.locationManager startUpdatingLocation];
}

 

转载于:https://www.cnblogs.com/dujiahong/p/7885607.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值