这是我的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>
只有当我将其作为字符串存储在不同的键下时才能获得章节名称&#34; chap&#34;。
这是代码。
override func viewDidLoad() {
super.viewDidLoad()
let path = Bundle.main.path(forResource: "xml", ofType: "plist")
let dict = NSDictionary(contentsOfFile: path!)
chapters = dict!.object(forKey: "Chap") as! [String]
ansTopics = dict!.object(forKey: "Complete") as! Array<String>
}
override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return ansTopics.count
}
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "mainPage", for: indexPath)
cell.textLabel?.text = ansTopics[indexPath.row]
return cell
}
如何将数组名称作为字符串并将其传递给tableview元素?另外,如何为第二个表视图的相应章节索引主题(存储为字符串)?
目前,ansTopics
返回信号SIGABERT
错误。
答案 0 :(得分:1)
问题是您的密钥Complete
包含Dictionary
而不是字符串数组。因此ansTopics
应声明为[String: Any]
。
ansTopics = dict!.object(forKey: "Complete") as! [String: Any] //or Dictionary<String, Any>
如果您使用if let
或guard
从Dictionary中获取值而不是强行包装它,那就更好了。
if let dict = NSDictionary(contentsOfFile: path!), let arrays = dict.object(forKey: "Complete") as? [String: Any] {
ansTopics = arrays
}
编辑:您需要声明一个类型为字符串名称chapter
的数组的实例属性,并使用keys
字典对其进行初始化,然后将该数组与您的tableview一起使用。
var ansTopics = [String:Any]()
var chapters = [String]()
现在以这种方式初始化章节。
if let dict = NSDictionary(contentsOfFile: path!), let arrays = dict.object(forKey: "Complete") as? [String: Any] {
self.ansTopics = arrays
self.chapters = self.ansTopics.keys.sorted()
}