gpt4 book ai didi

ios - 无法使用 JSON 类型的参数列表调用类型 'Int' 的初始值设定项

转载 作者:搜寻专家 更新时间:2023-10-31 22:00:11 32 4
gpt4 key购买 nike

为什么我无法将 JSON 响应中的字符串值转换为 Int?它返回下一个错误:

Cannot invoke initializer for type 'Int' with an argument list of type '(JSON)'

当我尝试:

Int(json[i]["id"])

如何将其转换为 Int?

最佳答案

我假设您使用的是 SwiftyJSON .

在这种情况下,您有两个选择:

可选的 getter:

if let id = json[i]["id"].int {
// do something
}

非可选的 getter:

let id: Int = json[i]["id"].intValue

关于ios - 无法使用 JSON 类型的参数列表调用类型 'Int' 的初始值设定项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34453521/

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