gpt4 book ai didi

ios - 使用 componentsSeparatedByString() 断点

转载 作者:行者123 更新时间:2023-11-29 02:32:58 31 4
gpt4 key购买 nike

我正在为一个应用程序使用 MapKit

我正在将信息存储在全局字典中,然后再次访问它们。

每个都使用文本+用户名+日期的键存储。此实例中的用户名变量包含字符串的日期和用户名

func mapView (mapView: MKMapView!, viewForAnnotation annotation: MKAnnotation!) -> MKAnnotationView{
var pinView = MKPinAnnotationView()
var imageView: UIImageView = UIImageView()
var button: UIButton = UIButton()
let username = annotation.title!.componentsSeparatedByString(" - ")
var string: String = annotation.subtitle! + username[0] + username[1] as String!
println(string)
println(PPs[string])
var pp = PPs[string]

username = annotation.title 行上,它在该行的断点处停止(我已将其关闭)。

 EXC_BREAKPOINT (code=EXC_ARM_BREAKPOINT, subcode=0xe7ffdefe)

我想知道当我声明用户名时出了什么问题,我已经尝试过 let 和 var。

最佳答案

这很可能意味着 annotationannotation.title 为 nil。我建议在函数体的第一行打断点并检查 annotation 参数。

关于ios - 使用 componentsSeparatedByString() 断点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26672711/

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