博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
IOS开发—App 在 IOS 8 的simulator运行时,定位卡死bug解决
阅读量:6294 次
发布时间:2019-06-22

本文共 2173 字,大约阅读时间需要 7 分钟。

hot3.png

在 iOS 8 上编译会出现以下 log : 

Trying to start MapKit location updates without prompting for location authorization. Must call -[CLLocationManager requestWhenInUseAuthorization] or -[CLLocationManager requestAlwaysAuthorization] first.

经搜索得到解决方法如下:

1、修改info.plist:

    新增key值为NSLocationWhenInUseUsageDescription 或 NSLocationAlwaysUsageDescription(这里,我将两个都加了进去),value可以为空,也可以设置YES,不过我得问题还是不能解决,最终还是找到得了问题所在,就是info.plist中还需要包含Supported interface orientations 这个Array字段。然后运行就解决了。 

2、修改代码: 

    在调用方法startUpdatingLocation的前面加上一句 

1
2
3
if
([locationManager respondsToSelector:@selector(requestWhenInUseAuthorization)]) {
    
[locationManager requestWhenInUseAuthorization];
}

3、博客原文修改方法: 

1
2
3
4
5
6
7
locationManager = [[CLLocationManager alloc] init];
        
locationManager.delegate = self;
        
locationManager.desiredAccuracy=kCLLocationAccuracyBest;
        
if
([locationManager respondsToSelector:@selector(requestWhenInUseAuthorization)]) {
            
[locationManager requestWhenInUseAuthorization];
        
}
        
[locationManager startUpdatingLocation];

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
- (
void
)locationManager:(CLLocationManager *)manager didChangeAuthorizationStatus:(CLAuthorizationStatus)status {
 
    
if
(
        
([locationManager respondsToSelector:@selector(requestWhenInUseAuthorization)] && status != kCLAuthorizationStatusNotDetermined && status != kCLAuthorizationStatusAuthorizedWhenInUse) ||
        
(![locationManager respondsToSelector:@selector(requestWhenInUseAuthorization)] && status != kCLAuthorizationStatusNotDetermined && status != kCLAuthorizationStatusAuthorized)
        
) {
 
        
NSString *message = @
"您的手機目前並未開啟定位服務,如欲開啟定位服務,請至設定->隱私->定位服務,開啟本程式的定位服務功能"
;
        
UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@
"無法定位"
message:message delegate:nil cancelButtonTitle:@
"確定"
otherButtonTitles: nil];
        
[alertView show];
 
    
}
else
{
 
        
[locationManager startUpdatingLocation];
    
}
}

上面那行是 iOS 8 以上,第二行是 iOS 7 以下,因為 kCLAuthorizationStatusAuthorized 在 iOS 8 完全不能使用。 

1
2
3
4
5
6
7
8
9
10
CLAuthorizationStatus status = [CLLocationManager authorizationStatus];
     
    
if
(status == kCLAuthorizationStatusAuthorizedWhenInUse || status == kCLAuthorizationStatusAuthorized) {
 
    
// 开始定位
 
}
else
{
 
    
// 预示警告
}

转载于:https://my.oschina.net/u/2562364/blog/632473

你可能感兴趣的文章
运维基础命令
查看>>
入门到进阶React
查看>>
SVN 命令笔记
查看>>
检验手机号码
查看>>
重叠(Overlapped)IO模型
查看>>
Git使用教程
查看>>
使用shell脚本自动监控后台进程,并能自动重启
查看>>
Flex&Bison手册
查看>>
solrCloud+tomcat+zookeeper集群配置
查看>>
/etc/fstab,/etc/mtab,和 /proc/mounts
查看>>
Apache kafka 简介
查看>>
socket通信Demo
查看>>
技术人员的焦虑
查看>>
js 判断整数
查看>>
mongodb $exists
查看>>
js实现页面跳转的几种方式
查看>>
sbt笔记一 hello-sbt
查看>>
常用链接
查看>>
pitfall override private method
查看>>
!important 和 * ----hack
查看>>