gpt4 book ai didi

swift - 解析具有不同键和值的字典

转载 作者:行者123 更新时间:2023-11-28 08:27:19 26 4
gpt4 key购买 nike

我有这样一本字典:

var mapNames: [String: [String]] = 
[
"A": ["A1", "A2"],
"B": ["B1"],
"C": ["C1", "C2", "C3"]
]

现在我有一个 1st View controller 的 tableview 函数:

override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) {

//I want to print "A", "B", "C" here.

}

在我的第二个 View Controller 的 tableview 函数中:

override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {

//If user taps on "A" in the 1st VC, show here cells with "A1", "A2"

}

有人可以帮助我如何解析我的字典以首先获取键列表,然后为每个键获取相应值的列表?

谢谢。

最佳答案

正如 Eric 所指出的,您应该先阅读文档。要获取字典的键值,您需要这样做:

for (key, value) in mapNames {
print(key)
print(mapNames[key])
}

关于swift - 解析具有不同键和值的字典,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39642001/

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