iOS CLLocationManager定位

在iOS8以前的版本中,我们使用CLLocationManager定位是没有问题的,最近在iOS8系统中却无法定位了。。。。这是一大问题啊!

1、首先定义一个全局的变量用来记录CLLocationManager对象,引入CoreLocation.framework使用#import <CoreLocation/CoreLocation.h>
1
@property (nonatomic, strong) CLLocationManager  *locationManager;
2、初始化CLLocationManager并开始定位
1
2
3
4
5
locationManager=[[CLLocationManager alloc] init];
     locationManager. delegate =self;
     locationManager.desiredAccuracy=kCLLocationAccuracyBest;
     locationManager.distanceFilter=10;
     [locationManager startUpdatingLocation]; //开启定位
3、实现CLLocationManagerDelegate的代理方法
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#pragma mark CLLocationManagerDelegate<br>/**<br>* 获取经纬度<br>*/
-( void )locationManager:(CLLocationManager *)manager didUpdateLocations:(NSArray *)locations{
     CLLocation *currLocation=[locations lastObject];
     location.strLatitude=[NSString stringWithFormat: @"%f" ,currLocation.coordinate.latitude];
     location.strLongitude=[NSString stringWithFormat: @"%f" ,currLocation.coordinate.longitude];
     NSLog( @"la---%f, lo---%f" ,currLocation.coordinate.latitude,currLocation.coordinate.longitude);
}
/**
  *定位失败,回调此方法
  */
-( void )locationManager:(CLLocationManager *)manager didFailWithError:(NSError *)error{
     if ([error code]==kCLErrorDenied) {
         NSLog( @"访问被拒绝" );
     }
     if ([error code]==kCLErrorLocationUnknown) {
         NSLog( @"无法获取位置信息" );
     }
}

 iOS8中使用CoreLocation定位

1、在使用CoreLocation前需要调用如下函数【iOS8专用】:
iOS8对定位进行了一些修改,其中包括定位授权的方法,CLLocationManager增加了下面的两个方法:
(1)始终允许访问位置信息
1
- ( void )requestAlwaysAuthorization;
 
(2)使用应用程序期间允许访问位置数据
1
- ( void )requestWhenInUseAuthorization;
   示例如下:
1
2
3
4
5
6
7
8
locationManager=[[CLLocationManager alloc] init];
     locationManager. delegate =self;
     locationManager.desiredAccuracy=kCLLocationAccuracyBest;
     locationManager.distanceFilter=10;
     if (iOSVersion>=8) {
         [locationManager requestWhenInUseAuthorization]; //使用程序其间允许访问位置数据(iOS8定位需要)
     }
     [locationManager startUpdatingLocation]; //开启定位
2、在Info.plist文件中添加如下配置:
(1)NSLocationAlwaysUsageDescription
(2)NSLocationWhenInUseUsageDescription

这样添加后,定位功能就能正常使用了!
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值