func locationManager(manager: CLLocationManager,dIDChangeAuthorizationStatus status: CLAuthorizationStatus)
和
CLLocationManager.authorizationStatus()
第一个是在用户更改授权状态时调用的,第二个是允许您随时确定当前状态.
然后,显示消息,例如:
let alert = UIAlertController(Title: "Your Title",message: "GPS access is restricted. In order to use tracking,please enable GPS in the Settigs app under Privacy,Location Services.",preferredStyle: UIAlertControllerStyle.Alert) alert.addAction(UIAlertAction(Title: "Go to Settings Now",style: UIAlertActionStyle.Default,handler: { (alert: UIAlertAction!) in print("") UIApplication.sharedApplication().openURL(NSURL(string:UIApplicationopenSettingsURLString)!) }))
上面的代码显示警报,并允许用户直接进入设置以启用位置.
总结以上是内存溢出为你收集整理的如何在Swift中用户禁用位置时显示警报?全部内容,希望文章能够帮你解决如何在Swift中用户禁用位置时显示警报?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)