gpt4 book ai didi

ios mapkit,运营商名称因 [LogMessageLogging] 崩溃 6.1 无法检索 CarrierName

转载 作者:行者123 更新时间:2023-12-02 10:54:15 25 4
gpt4 key购买 nike

我已在我的应用程序中添加了 MapKit。我已通过 IBOUTLET 将 MKmapview 连接到我的 View Controller ,它在模拟器中运行良好,但在我的设备中崩溃了

[LogMessageLogging] 6.1 无法检索 CarrierName。 CTError:domain-2,code-5,errStr:((os/kern)失败)。

我正在从 CLLocationmanager 获取用户的位置并尝试在 map 中添加注释。代码如下:

func locationManager(_ manager: CLLocationManager, didUpdateLocations locations: [CLLocation]) {

let userLocation:CLLocation = locations[0] as CLLocation
let coordinate = CLLocationCoordinate2D(latitude: userLocation.coordinate.latitude, longitude: userLocation.coordinate.longitude)
MD_myCurrentLocation = coordinate
setupLocationMarker(coordinate:coordinate)
manager.stopUpdatingLocation()

}

func setupLocationMarker(坐标:CLLocationCooperative2D){

    iosMap.removeAnnotations(iosMap.annotations)
let span = MKCoordinateSpanMake(0.01, 0.01)
let region = MKCoordinateRegion(center: coordinate, span: span)
iosMap.setRegion(region, animated: true)
let annotation = MKPointAnnotation()
annotation.coordinate = coordinate
iosMap.addAnnotation(annotation)

}

最佳答案

尝试通过转到 >> 设置 >> 常规 >> 重置 >> 重置网络设置来重置设备的网络配置。

或者

在 AppDelegate 中导入 CoreTelephony

希望这有帮助。

关于ios mapkit,运营商名称因 [LogMessageLogging] 崩溃 6.1 无法检索 CarrierName,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44299954/

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