MapPinAnnotation是一个MKAnnotation类型,我在其中定义了
var lblNotificationCount:UILabel!
我想在标签处设置文字,但如下所述收到错误: -
let storeAnnotation = annotation as! MapPinAnnotation
并且在控制台中我能够获得计数值但是打印错误如下: -
控制台输出:
Count: 1
fatal error: unexpectedly found nil while unwrapping an Optional value
请帮助,如何解决此问题。提前谢谢。
答案 0 :(得分:0)
这可能会有所帮助:
storeAnnotation.lblNotificationCount.text = String(describing: count)