gpt4 book ai didi

ios - 如何查看 Swift 字典中存在的数组?

转载 作者:搜寻专家 更新时间:2023-11-01 06:36:58 24 4
gpt4 key购买 nike

我正在尝试遍历字典中存在的数组。我做错了什么,这应该如何工作?

    public func getItemCount() -> Int{

var count = 0
for item in order.object(forKey:"items") as? Array {
count += 1
//other instructions
}
return count
}

最佳答案

尝试将其分解为两个步骤。

public func getItemCount() -> Int{

if let thisArray:[AnyObject] = order.object(forKey:"items") as? [AnyObject] {
for item in thisArray {

}
}
}

随时提出修改建议。如果不起作用请告诉我

关于ios - 如何查看 Swift 字典中存在的数组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40388534/

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