无法将数组名称传递到Swift 3

时间:2016-12-29 06:29:10

标签: ios arrays swift swift3 plist

我对swift代码比较陌生。无法将plist中的数组文本传递到表视图...

现在我在模拟器中获得一个空表视图

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 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>

1 个答案:

答案 0 :(得分:1)

尝试此代码可能会对您有所帮助

services.AddMvc().AddJsonOptions(x => x.SerializerSettings.ReferenceLoopHandling = Newtonsoft.Json.ReferenceLoopHandling.Ignore);

而不是

let arrays = dict.object(forKey: "Complete") as? Dictionary<String,AnyObject>

由于