gpt4 book ai didi

ios - 获取iPhone经纬度

转载 作者:行者123 更新时间:2023-11-28 09:12:27 27 4
gpt4 key购买 nike

我一直在尝试检索 iPhone 的纬度和经度,以便传递给外部函数以便对某些内容进行地理标记。但是,我一直很不成功。这是我现在正在使用的代码。

let locationManager = CLLocationManager()

override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
self.locationManager.requestAlwaysAuthorization()
self.locationManager.requestWhenInUseAuthorization()
}

override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}

@IBAction func findMyLocation (sender:AnyObject)
{
locationManager.delegate = self
locationManager.desiredAccuracy = kCLLocationAccuracyBest
locationManager.startUpdatingLocation()
}

func locationManager(manager: CLLocationManager!, didUpdateLocations locations: [AnyObject]!)
{
CLGeocoder().reverseGeocodeLocation(manager.location, completionHandler: {(placemarks, error)->Void in

if error == nil
{
println("Reverse geocoder failed with error " + error.localizedDescription)
return
}

if placemarks.count > 0
{
let pm = placemarks[0] as CLPlacemark
self.displayLocationInfo(pm)
}
else
{
println("Problem with the data received from geocoder")
}
})
}

func displayLocationInfo(placemark: CLPlacemark) {
//stop updating location to save battery life
locationManager.stopUpdatingLocation()
if (placemark.postalCode != nil)
{
println(placemark.postalCode)
println("just tried to print placemark's postal code")
}
//println(placemark.locality ? placemark.locality : "")
//println(placemark.postalCode ? placemark.postalCode : "")
//println(placemark.administrativeArea ? placemark.administrativeArea : "")
//println(placemark.country ? placemark.country : "")
}

func locationManager(manager: CLLocationManager!, didFailWithError error: NSError!)
{
println("Error while updating location " + error.localizedDescription)
}

截至目前,当我运行该程序时几乎什么也得不到。我有一个小按钮,上面写着“找我”,点击后,输出框中没有弹出任何内容。我将 iOS 模拟器的调试位置设置为“Apple”,并且我之前尝试在尝试运行程序时始终在模拟器的设置中启用位置服务(尽管目前它没有显示我的应用程序和这样做的选项)。我真的只想获得纬度和经度的双重值,如果有一个简单的东西那就太好了。

最佳答案

  1. 您应该只请求一种类型的授权。选择对您的应用的用户体验最有意义的一个。

  2. 您可能缺少您的目的字符串,现在需要它来激活定位服务。将以下键之一添加到您的 Info.plist 中:

    • NSLocationAlwaysUsageDescription - 如果请求 Always 权限
    • NSLocationWhenInUseUsageDescription - 如果请求 WhenInUse 权限

    key 的值应该是一个字符串,用于解释为什么需要位置权限。

关于ios - 获取iPhone经纬度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28801365/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com