我尝试使用解码 plist,PropertyListDecoder()
但是当我尝试访问密钥时,我收到一个错误,指出它的格式错误。我对自己做错了什么感到茫然。我假设我可以Plist
像解码 JSON 文件一样解码文件,对吗?我不知道,我还是新手。
//struct for PLists
struct AccessControl: Decodable {
enum AccessControlKeys: String, CodingKey {
case api
}
enum KeySecretKeys: String, CodingKey {
case apiKey = "KEY"
case apiSecret = "SECRET"
}
var KEYS: [KeySecrets]
//custom decoder
init(from decoder: Decoder) throws {
let accessContainer = try decoder.container(keyedBy: AccessControlKeys.self)
let nestedContainer = try accessContainer.nestedContainer(keyedBy: KeySecretKeys.self, forKey: .api)
self.KEYS = try nestedContainer([KeySecrets].self, forKey: .apiKey)
self.KEYS = try nestedContainer.decode([KeySecrets].self, forKey: .apiSecret)
}
}
struct KeySecrets: Decodable {
var apiKey: String
var apiSecret: String
}
func provideAccessKeys(for api: apis = .api, mode: modes = .dev) -> keysForApi? {
switch api {
case .api:
print("Api")
}
switch mode {
case .dev:
print("mode - developers")
case .test:
print("mode - test")
case .prod:
print("mode - production")
}
}
这是我的第一种方法,但它会抛出一个错误说
“无法读取数据,因为格式错误”
if let fileURL = Bundle.main.url(forResource: "Accesscontrol", withExtension: "plist") {
do {
let data = try Data.init(contentsOf: fileURL, options: .mappedIfSafe)
let decoder = PropertyListDecoder()
let result = try decoder.decode(AccessControl.self, from: data)
} catch {
print(error.localizedDescription)
}
}
第二种方法,有点放弃Codable
了,仍然无法提取值
guard let fileUrl = Bundle.main.url(forResource: "Accesscontrol", withExtension: "plist") else {return}
let key: String
let secret: String
do {
let data = try Data.init(contentsOf: fileUrl, options: .mappedIfSafe)
let plist = try! PropertyListSerialization.propertyList(from:data, options: [], format: nil) as! [Any]
print(plist)
let dictionary = plist[api.rawValue]
} catch {
print(error.localizedDescription)
}
plist 文件的结构类似于
<plist version="1.0">
<dict>
<key>A_GROUP_OF_KEYS</key>
<array>
<dict>
<key>KEY1</key>
<string>KEY1_STRING</string>
<key>SECRET1_KEY</key>
<string>SECRET1_STRING</string>
</dict>
<dict>
<key>KEY2</key>
<string>KEY2_STRING</string>
<key>SECRET2_KEY</key>
<string>SECRET2_VALUE</string>
</dict>
<dict>
<key>KEY</key>
<string>KEY_STRING</string>
<key>SECRET_KEY</key>
<string>SECRET_VALUE</string>
</dict>
</array>
<key>ANOTHER_GROUP_OF_KEYS</key>
<array>
<dict>
<key>KEY1</key>
<string>KEY1_STRING</string>
<key>SECRET1_KEY</key>
<string>SECRET1_STRING</string>
</dict>
<dict>
<key>KEY2</key>
<string>KEY2_STRING</string>
<key>SECRET2_KEY</key>
<string>SECRET2_VALUE</string>
</dict>
<dict>
<key>KEY</key>
<string>KEY_STRING</string>
<key>SECRET_KEY</key>
<string>SECRET_VALUE</string>
</dict>
</array>
</dict>
</plist>
有什么建议吗?