我使用过其他应用程序,速度更快..
这是我的代码的样子:
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所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)