IOS 系统定位提示完毕后 提示用户去开启定位权限
当用户选择了系统不开启定位提示后,在此处可以然后去提示用户开启定位权限。
当定位失败时,通过定位失败的code来判断是否需要再次弹出提示用户定位的对话框
http://bbs.yusian.com/thread-10617-1-1.html
Code=0说明没有位置信息
Code=1说明是系统授权问题
【IOS 系统定位提示完毕后 提示用户去开启定位权限】
- (void)mapLocationDidFailWithError:(NSError *)error
{
NSLog(@"----%@",error);
if (error.code == 1)
{
if([[NSUserDefaults standardUserDefaults] boolForKey:@"EachTimeAppStart"])
{
//判断定位服务权限是否开通
[self initCLLocationManager];
[[NSUserDefaults standardUserDefaults] setBool:NO forKey:@"EachTimeAppStart"];
[[NSUserDefaults standardUserDefaults] synchronize];
}
}
}
- (void)initCLLocationManager
{
BOOL enable=[CLLocationManager locationServicesEnabled];
NSInteger status=[CLLocationManager authorizationStatus];
if(!enable || status<3)
{
if ([[UIDevice currentDevice].systemVersion floatValue] >= 8)
{
CLLocationManager*locationManager = [[CLLocationManager alloc] init];
[locationManager requestAlwaysAuthorization];
[locationManager requestWhenInUseAuthorization];
}UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"打开定位开关"
message:@"定位服务未开启,请进入系统[设置]> [隐私] > [定位服务]中打开开关,并允许使用定位服务"
delegate:self
cancelButtonTitle:nil
otherButtonTitles:@"取消",@"立即开启", nil];
alertView.tag = ALERTTAGNUMBER;
[alertView show];
}
}
推荐阅读
- 2020-04-07vue中Axios的封装和API接口的管理
- 如何在Mac中的文件选择框中打开系统隐藏文件夹
- iOS中的Block
- 单点登陆
- 操作系统|[译]从内部了解现代浏览器(1)
- 游乐园系统,助力游乐园管理
- 中国MES系统软件随工业化成长
- 推荐系统论文进阶|CTR预估 论文精读(十一)--Deep Interest Evolution Network(DIEN)
- 记录iOS生成分享图片的一些问题,根据UIView生成固定尺寸的分享图片
- 三国谋略22(找准你的定位)