出现致命错误:在展开Optional值时意外发现nil

时间:2017-10-26 05:23:53

标签: swift3 uilabel mapkit mkannotationview

MapPinAnnotation是一个MKAnnotation类型,我在其中定义了

var lblNotificationCount:UILabel!

我想在标签处设置文字,但如下所述收到错误: -

let storeAnnotation = annotation as! MapPinAnnotation

enter image description here

并且在控制台中我能够获得计数值但是打印错误如下: -

控制台输出:

Count: 1
fatal error: unexpectedly found nil while unwrapping an Optional value

请帮助,如何解决此问题。提前谢谢。

1 个答案:

答案 0 :(得分:0)

这可能会有所帮助:

storeAnnotation.lblNotificationCount.text = String(describing: count)