美文网首页iOS
ios 判断应用是否被允许使用gps功能

ios 判断应用是否被允许使用gps功能

作者: lkqin | 来源:发表于2015-10-31 10:32 被阅读74次

    // Swift:
    let status = CLLocationManager.authorizationStatus() //应用gps状态
    // status : 0没有操作 2拒绝 3允许一直 4 允许打开时
    Gpsflag = CLLocationManager.locationServicesEnabled()//应用是否开启gps功能
    if Gpsflag == true{
    if status.rawValue == 3 || status.rawValue == 4 {
    Gpsflag = true
    }else{
    Gpsflag = false
    }
    }

    相关文章

      网友评论

        本文标题:ios 判断应用是否被允许使用gps功能

        本文链接:https://www.haomeiwen.com/subject/spnfhttx.html