gpt4 book ai didi

objective-c - 如何将下面 Objective-C 中的 JSON 转换为 Swift?

转载 作者:行者123 更新时间:2023-11-30 12:03:01 24 4
gpt4 key购买 nike

我尝试将以下代码转换为

objective-c

NSArray *jsonObject = [NSJSONSerialization JSONObjectWithData:[json dataUsingEncoding:NSUTF8StringEncoding]

swift

let json = JSONSerialization.jsonObject(with: json?.data(using: String.Encoding(rawValue: String.Encoding.utf8.rawValue)), options: JSONSerialization.ReadingOptions)

但我不断收到此错误

Cannot invoke 'jsonObject' with an argument list of type '(with: Data?, options: JSONSerialization.ReadingOptions.Type)'

最佳答案

您也应该利用具有可选值的 Swift。试试这个。

if let data = json?.data(using: .utf8),
let jsonObject = try? JSONSerialization.jsonObject(with: data, options: []) {
//jsonObject
}

关于objective-c - 如何将下面 Objective-C 中的 JSON 转换为 Swift?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46989400/

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