我甚至添加了一个明确的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应用程序所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)