gpt4 book ai didi

ios - 如何在 Swift 中不使用 NSDictionary 读取 Plist?

转载 作者:搜寻专家 更新时间:2023-10-31 08:09:30 27 4
gpt4 key购买 nike

我已经在 Swift 2 中使用过这个方法

var myDict: NSDictionary?
if let path = NSBundle.mainBundle().pathForResource("Config", ofType: "plist") {
myDict = NSDictionary(contentsOfFile: path)
}

但是不知道如何在不使用的情况下读取 Swift3 中的 plistNSDictionary(contentsOfFile: 路径)

最佳答案

原生的 Swift 方法是使用 PropertyListSerialization

if let url = Bundle.main.url(forResource:"Config", withExtension: "plist") {
do {
let data = try Data(contentsOf:url)
let swiftDictionary = try PropertyListSerialization.propertyList(from: data, format: nil) as! [String:Any]
// do something with the dictionary
} catch {
print(error)
}
}
<罢工>

您还可以使用带有类型转换的 NSDictionary(contentsOf::

if let url = Bundle.main.url(forResource:"Config", withExtension: "plist"),
let myDict = NSDictionary(contentsOf: url) as? [String:Any] {
print(myDict)
}

但是你明确地写道:没有使用 NSDictionary(contentsOf...

如果没有在 Swift 中强制转换,基本上不要使用 NSDictionary,您会丢弃重要的类型信息。


同时(Swift 4+)还有更舒适的 PropertyListDecoder 能够将 Plist 直接解码为模型。

关于ios - 如何在 Swift 中不使用 NSDictionary 读取 Plist?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40436895/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com