码迷,mamicode.com
首页 > 编程语言 > 详细

swift中判断设备是否打开定位

时间:2015-12-21 21:56:10      阅读:244      评论:0      收藏:0      [点我收藏+]

标签:

在基于LBS的项目中很多都会判断是否打开了定位功能.从而做提醒用户打开或者提醒到哪里打开等操作...在OC时候我们这么写:

    //检测是否开启定位

    if ([CLLocationManager locationServicesEnabled] &&

        ([CLLocationManager authorizationStatus] == kCLAuthorizationStatusAuthorized

         || [CLLocationManager authorizationStatus] == kCLAuthorizationStatusNotDetermined)) {

            //定位功能可用,开始定位

        }

    else if ([CLLocationManager authorizationStatus] == kCLAuthorizationStatusDenied){

//        NSlog("定位功能不可用,提示用户或忽略");

    }

 

  但是在swift中这样不好用,调用方式也不同,看官方文档上这么说:

技术分享

看了文档就可以看出,其实就是调用方式不同,所以我们swift就如下写:

     //检测是否开启定位

        if ((CLLocationManager.authorizationStatus() == CLAuthorizationStatus.Authorized) || (CLLocationManager.authorizationStatus() == CLAuthorizationStatus.NotDetermined)) && (CLLocationManager .locationServicesEnabled()){

            //定位开启了

        }else if CLLocationManager.authorizationStatus() == CLAuthorizationStatus.Denied{

  //定位没有开启

    }

        

swift中判断设备是否打开定位

标签:

原文地址:http://www.cnblogs.com/changjianioser/p/5064764.html

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