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

ios简单实现如果没有开启定位,提示开启系统软件定位功能

时间:2016-12-15 14:40:37      阅读:228      评论:0      收藏:0      [点我收藏+]

标签:delegate   nil   功能   系统软件   share   app   nstat   location   enabled   

if([CLLocationManager locationServicesEnabled] && [CLLocationManager authorizationStatus] == kCLAuthorizationStatusDenied) {//判断该软件是否开启定位

        JJLog(@"没打开");

        self.isAddress = YES;

        UIAlertView *alertView = [[UIAlertView alloc]initWithTitle:@"打开定位开关" message:@"请点击设置打开定位服务" delegate:self cancelButtonTitle:@"取消" otherButtonTitles:@"设置", nil];

        [alertView show];

    }else{

        JJLog(@"打开");

    }

 

- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex{

  if (buttonIndex == 1) {

          NSURL *url = [NSURL URLWithString:UIApplicationOpenSettingsURLString];

          if ([[UIApplication sharedApplication] canOpenURL:url]) {

              [[UIApplication sharedApplication] openURL:url];

          }

      }

}

ios简单实现如果没有开启定位,提示开启系统软件定位功能

标签:delegate   nil   功能   系统软件   share   app   nstat   location   enabled   

原文地址:http://www.cnblogs.com/sunfuyou/p/6182863.html

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