CLLocationManager获取位置很慢,Swift

CLLocationManager获取位置很慢,Swift,第1张

概述我正在创建这个应用程序,它需要获取用户位置 – 它一切正常,事实上,从接受使用位置服务到获取实际位置需要5秒的时间 – 这是正常的吗? 我使用过其他应用程序,速度更快.. 这是我的代码的样子: override func viewDidLoad() { super.viewDidLoad() // Ask for Location-Authorisation from the U 我正在创建这个应用程序,它需要获取用户位置 – 它一切正常,事实上,从接受使用位置服务到获取实际位置需要5秒的时间 – 这是正常的吗?
我使用过其他应用程序,速度更快..

这是我的代码的样子:

overrIDe func vIEwDIDLoad() {    super.vIEwDIDLoad()    // Ask for Location-Authorisation from the User.    self.locationManager.requestWhenInUseAuthorization()    if CLLocationManager.locationServicesEnabled() {        locationManager.delegate = self        locationManager.requestLocation()    }    mapVIEw.delegate = self}func locationManager(manager: CLLocationManager,dIDUpdateLocations locations: [CLLocation]) {    let locValue: CLLocationCoordinate2D = manager.location!.coordinate    let initialLocation = CLLocation(latitude: locValue.latitude,longitude: locValue.longitude)    self.centerMapOnLocation(initialLocation)}func locationManager(manager: CLLocationManager,dIDFailWithError error: NSError) {    print("Could not get location")}

但是从应用程序获取位置放入centerMapOnLocation函数的时间似乎只是很长.获取用户位置时会出现什么情况?我正在测试一个wifi连接,所以我知道它不是因为互联网很慢,或者连接不好……

有人有想法吗? 总结

以上是内存溢出为你收集整理的CLLocationManager获取位置很慢,Swift全部内容,希望文章能够帮你解决CLLocationManager获取位置很慢,Swift所遇到的程序开发问题。

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

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

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

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

发表评论

登录后才能评论

评论列表(0条)

保存