首页 > 系统 > iOS > 正文

详谈iOS 位置权限弹出框闪现的问题

2019-10-21 18:46:51
字体:
来源:转载
供稿:网友

当编码如下的时候,进入页面的时候可以看到UIAlertView弹出框出现一下,刚想点击的时候,他不见了,这个郁闷

  CLLocationManager* _locationManager = [[CLLocationManager alloc] init];  _locationManager.desiredAccuracy = kCLLocationAccuracyHundredMeters;  if ([[UIDevice currentDevice].systemVersion floatValue] >= 8) {    //由于IOS8中定位的授权机制改变 需要进行手动授权    //获取授权认证    [_locationManager requestWhenInUseAuthorization];  }  [_locationManager startUpdatingLocation];

究其原因是在arc下用完就被释放了,为了确保用户可以点击权限,只需要将 _locationManager 设置为属性即可,如下:

@property (strong, nonatomic) CLLocationManager* locationManager;  self.locationManager = [[CLLocationManager alloc] init];  _locationManager.desiredAccuracy = kCLLocationAccuracyHundredMeters;  if ([[UIDevice currentDevice].systemVersion floatValue] >= 8) {    //由于IOS8中定位的授权机制改变 需要进行手动授权    //获取授权认证    [_locationManager requestWhenInUseAuthorization];  }  [_locationManager startUpdatingLocation];

如此再测试,完全没问题!

以上这篇详谈iOS 位置权限弹出框闪现的问题就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持VEVB武林网。


注:相关教程知识阅读请移步到IOS开发频道。
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表