gpt4 book ai didi

ios - 由于信号 : Segmentation fault: 11 after update to Xcode 7. 1,命令失败

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

我正在为 ios 9 开发一个应用程序。自从我更新到 7.1 版本后,我遇到了这个错误:命令因信号而失败:段错误:11

查看代码,我发现这段代码导致了这个错误:

func mapView(mapView: MKMapView, viewForAnnotation annotation: MKAnnotation) -> MKAnnotationView? {
if !(annotation is ADBaseAnnotation){
print("No es ADBaseAnnotation",terminator:"\n")
return nil
}

var anView = mapView.dequeueReusableAnnotationViewWithIdentifier((annotation as! ADBaseAnnotation).getReuseId())
if let normal = annotation as? NormalParking {
//anView = normal.getAnnotationView(annotation, reuseIdentifier: normal.getReuseId())
} else if let hightlight = annotation as? HightLightParking{
//anView = hightlight.getAnnotationView(annotation, reuseIdentifier: hightlight.getReuseId())
}
return anView
}

错误是由注释行引起的。请帮忙

最佳答案

这是一个编译器真的失败的问题,还是它仍然会在正常编译后突出显示发生错误的代码行?当编译器对我编写的代码感到困惑并且无法编译并在内部崩溃时,我经常遇到这种情况。如果是这种情况,您可以在编译日志中找到更详细的信息。通常这是我自己的错,但编译器仍然太新,无法提供良好的反馈或以优雅的方式处理这种情况。

我不认识确切的问题,但我注意到您的代码有一些问题。在我看来很有趣的是以下内容:

if let normal = annotation as? NormalParking {
anView = normal.getAnnotationView(annotation, reuseIdentifier: normal.getReuseId())
}

为什么不使用相同的强制转换变量:

if let normal = annotation as? NormalParking {
anView = normal.getAnnotationView(normal, reuseIdentifier: normal.getReuseId())
}

而且你在施法后做的完全一样,实际上你根本不需要施法。

例如:

guard let annotation = annotation as? ADBaseAnnotation else {
print("No es ADBaseAnnotation",terminator:"\n")
return nil
}

if annotation is NormalParking || annotation is HightLightParking {
return annotation.getAnnotationView(annotation, reuseIdentifier: annotation.getReuseId())
}

return mapView.dequeueReusableAnnotationViewWithIdentifier(annotation).getReuseId())

我假设 ADBaseAnnotation 是定义 getReuseId() 的共享基类,并且您的 Parking 实现覆盖 getReuseId()

关于ios - 由于信号 : Segmentation fault: 11 after update to Xcode 7. 1,命令失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33336806/

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