码迷,mamicode.com
首页 > 移动开发 > 详细

iOS8 CLLocationManager初步使用

时间:2015-07-07 16:18:51      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:

最近在ios8.0使用CLLocationManager定位服务,发现老不能定位,查看设置菜单中的项也是处于未知状态.想起之前都有一个弹出框提示用户是否允许定位,这次一直没有出现了.原来ios8.0下的定位服务需要申请授权了. 具体代码如下:

 

 if ([CLLocationManager locationServicesEnabled]) {

  self.locationManager = [[CLLocationManager alloc] init];

 _locationManager.delegate = self;

 _locationManager.desiredAccuracy = kCLLocationAccuracyBest; //控制定位精度,越高耗电量越大。

 _locationManager.distanceFilter = 100; //控制定位服务更新频率。单位是“米”

  [_locationManager startUpdatingLocation];

   //在ios 8.0下要授权

 if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 8.0)

 [_locationManager requestWhenInUseAuthorization];  //调用了这句,就会弹出允许框了.

 }

 

注意:

   在Info.plist文件还要加上NSLocationWhenInUseUsageDescription这个key,Value可以为空,技术分享

 

#pragma mark - CLLocationManagerDelegate

- (void)locationManager:(CLLocationManager *)manager didUpdateLocations:(NSArray *)locations {

  

    CLLocation * currLocation = [locations lastObject];

 

    NSLog(@"%@",[NSString stringWithFormat:@"%.3f",currLocation.coordinate.latitude]);

    NSLog(@"%@",[NSString stringWithFormat:@"%.3f",currLocation.coordinate.longitude]);

}

iOS8 CLLocationManager初步使用

标签:

原文地址:http://www.cnblogs.com/niit-soft-518/p/4627243.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!