値:私の第二ビューコントローラのテーブルビュー」FUNCで解析辞書と私はこのような辞書持っ
override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) {
//I want to print "A", "B", "C" here.
}
:今、私は第一ビューコントローラのテーブルビューのFUNCを持って
var mapNames: [String: [String]] =
[
"A": ["A1", "A2"],
"B": ["B1"],
"C": ["C1", "C2", "C3"]
]
を:
override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
//If user taps on "A" in the 1st VC, show here cells with "A1", "A2"
}
私の辞書を解析して、最初にキーのリストを取得してから各キーy、対応する値のリストを取得しますか?
ありがとうございました。
ソースから学ぶ:https://developer.apple.com/library/content/documentation/Swift/Conceptual/Swift_Programming_Language/CollectionTypes.html#//apple_ref/doc/uid/TP40014097-CH8-ID113 – Moritz