Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用下面的代码来获取 CKAsset 列表,但它一直在崩溃并告诉我:"fatal error: unexpectedly found nil while unwrapping an Optional value"但是 CloudKit 仪表板中的资产列表不是空的。
"fatal error: unexpectedly found nil while unwrapping an Optional value"
你知道我哪里错了吗?
var imageAssets = record.value(forKey: "membersPhotos") as! [CKAsset]
谢谢
你被迫解开record.value(forKey: "membersPhotos")它是不好的做法。
record.value(forKey: "membersPhotos")
为了避免这种使用if let或guard条件,请始终了解您正在使用的女巫类型。
if let
guard
例子 :
if let imageAssets = record.value(forKey: "membersPhotos") as? [CKAsset] { }