CLLocationManager.authorizationStatus()总是CLAuthorizationStatus.Not确定与swift&objC应用程序

CLLocationManager.authorizationStatus()总是CLAuthorizationStatus.Not确定与swift&objC应用程序,第1张

概述我可以让我的CLLocationManager授权。 (在ios8下swift) 我甚至添加了一个明确的requestAlwaysAuthorization调用(在ios7下我不需要objC) func finishLaunch() { //ask for authorization let status = CLLocationManager.authorizationStatu 我可以让我的CLLocationManager授权。 (在ios8下swift)
我甚至添加了一个明确的requestAlwaysAuthorization调用(在ios7下我不需要objC)
func finishLaunch() {    //ask for authorization    let status = CLLocationManager.authorizationStatus()    if(status == CLAuthorizationStatus.NotDetermined) {        self.locationManager.requestAlwaysAuthorization();    }    else {        self.startMonitoring()    }    ...}

回调从未得到任何东西,但NotDermined并没有显示给用户的UIAlertVIEw。

func locationManager(manager: CLLocationManager!,dIDChangeAuthorizationStatus status: CLAuthorizationStatus) {    if(status == CLAuthorizationStatus.NotDetermined) {        println("Auth status unkown still!");    }    self.startMonitoring()}

我做错了吗 – 感觉像一个BUG,但我想要一些反馈

请记住,NSLocationAlwaysUsageDescription或NSLocationWhenInUseUsageDescription键现在是强制性的,因此您应该将其包含在您的pList中。 总结

以上是内存溢出为你收集整理的CLLocationManager.authorizationStatus()总是CLAuthorizationStatus.Not确定与swift&objC应用程序全部内容,希望文章能够帮你解决CLLocationManager.authorizationStatus()总是CLAuthorizationStatus.Not确定与swift&objC应用程序所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1053347.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-25
下一篇 2022-05-25

发表评论

登录后才能评论

评论列表(0条)

保存