假设以下词典:
var example: [String: (identifier: String, regex: NSRegularExpression)] = ["test": (identifier: "example", regex: try! NSRegularExpression(pattern: "test", options: []))]
我想把它存储如下:
let keyStore = NSUbiquitousKeyValueStore.default()
keyStore.set(example, forKey: "ex")
我的问题是,当我尝试访问它时:
let test: [String: (identifier: String, regex: NSRegularExpression)] = keyStore.dictionary(forKey: "ex") as! [String: (identifier: String, regex: NSRegularExpression)]
我收到以下错误:
展开的可选值
为什么会这样?
答案 0 :(得分:1)
您正在尝试将字典交给Objective-C,这需要Objective-C NSDictionary;但是你不能将Swift元组存储为Objective-C NSDictionary中的值。此外,NSUbiquitousKeyValueStore的规则更加严格:不仅必须是NSDictionary,还必须使用非常有限的属性列表类型。您需要做一些事情,比如在NSValue中包装CGSize并将其存档到NSData以便在此处使用它:
let sz = CGSize(width:10, height:20)
let val = NSValue(cgSize:sz)
let dat = NSKeyedArchiver.archivedData(withRootObject: val)
let example = ["test": dat]
let keyStore = NSUbiquitousKeyValueStore.default()
keyStore.set(example, forKey: "ex")
要恢复该值,请撤消该过程。
if let dict = keyStore.dictionary(forKey: "ex") {
if let ex = dict["test"] as? Data {
if let v = NSKeyedUnarchiver.unarchiveObject(with: ex) as? NSValue {
print(v.cgSizeValue) // (10.0, 20.0)
}
}
}