私は比較的簡単なコードです。ここでSwift 3のテーブルビューに配列名を渡すことができません
今私はシミュレータで空のテーブルビューを取得しています
override func viewDidLoad() {
super.viewDidLoad()
let path = Bundle.main.path(forResource: "xml", ofType: "plist")
if let dict = NSDictionary(contentsOfFile: path!), let arrays = dict.object(forKey: "Complete") as? [String: Any] {
self.ansTopics = arrays
self.chapters = self.ansTopics.keys.sorted()
}
}
override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return chapters.count
}
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "mainPage", for: indexPath)
cell.textLabel?.text = chapters[indexPath.row]
return cell
}
...テーブルビューにPLISTに配列のテキストを渡すことができませんplistファイルは
<plist version="1.0">
<dict>
<key>Complete</key>
<dict>
<key>Autonomic Nervous System</key>
<array>
<string>Cholinergic</string>
<string>Anticholinergic</string>
</array>
<key>Peripheral Nervous System</key>
<array>
<string>Central relaxants </string>
<string>Peripheral relaxants </string>
</array>
</dict>
<key>Chap</key>
<array>
<string>Autonomic Nervous System</string>
<string>Peripheral Nervous System</string>
</array>
</dict>
</plist>
'self.chapters'出力は何ですか? –
'self.chapters = self.ansTopics.keys.sorted()'の 'cell.tableView.reloadData()'の後に一度テーブルビューを再読み込みしてみてください –
@NiravD Empty simulator – Nish