gpt4 book ai didi

ios - Swift - 试图获取当前位置

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

<分区>

我正在尝试获取用户位置的经度和纬度,我已完成以下操作:

导入核心位置

import CoreLocation

添加核心位置委托(delegate)

class ViewController: UIViewController, CLLocationManagerDelegate, AVCaptureMetadataOutputObjectsDelegate, DTDeviceDelegate {

定义这个变量:

var locationManager: CLLocationManager!

然后添加这个方法:

func locationManager(manager: CLLocationManager, didUpdateLocations locations: [CLLocation]) {
let userLocation:CLLocation = locations[0]
let long = userLocation.coordinate.longitude;
let lat = userLocation.coordinate.latitude;

print(long, lat)

//Do What ever you want with it
}

但是位置没有被打印出来,我的方法甚至没有得到它。

我将要使用 Core Location 的项目添加到我的 plist 中,并且该应用在我首次运行时要求我使用定位服务。但是现在正在打印位置....我做错了什么?

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