我注册了duc tran的SYA 2,在newsfeed app中我收到了这个错误:
fatal error: unexpectedly found nil while unwrapping an Optional value
尝试访问评论时会发生这种情况。有什么想法吗?
答案 0 :(得分:0)
注释不是可选值,因此我们应该检查并设置数据。
将comments = media.comments
替换为
if let comments = media.comments {
self.comments = comments
}
或强>
在可选项下发表评论,如下,
let comments: [Comment]? = [Comment]()
comments
类的Media
属性在您的情况下也应该是可选的。当您从非可选属性读取数据时,它不应该是nil。