填充表格部分和字典数组中的行

时间:2016-02-20 14:23:01

标签: ios arrays swift class dictionary

我有一个表,我试图从存储模型数据的类填充。首先,我的数据存储为字典数组,如下所示:

var pupilSubjects = ["Tom":["English", "Geography", "History"], "Dick":["English", "Geography", "Physical Education", "Biology"], "Harry": ["English", "Geography", "Physical Education", "Biology"]]

在viewDidLoad中的TableViewController中,我获取了我的字典数组中的信息,并将每个字典添加到我称之为TableText的类中,如下所示:

for dict in pupilSubjects {

        let key = dict.0
        let values = dict.1


       tableTexts.append(TableText(name: key, subject: values))
    }

我的变量tableTexts存储在我的TableViewController中,如下所示:

var tableTexts = [TableText]()

我的TableText类如下:

import UIKit

class TableText: NSObject {

var name: String
var subject: [String]


init(name: String, subject: [String]) {
    self.name = name
    self.subject = subject

  }

}

我有一个自定义的TableViewCell,我称之为myTableViewCell,我在其中设置tableText数据如下:

   var tableText: TableText? {
    didSet {
        let myInputText = myTextView.text
        tableText!.subject.append(myInputText)
        //  stepNumber.text = msStep!.step

    }
}

我正在努力在我的TableViewController中实现cellForRowAtIndexPath,以显示我存储在var tableTexts = TableText中的节和行详细信息。我可以从我的章节标题中获取密钥:

let myKey = sectionTitles[indexPath.section]

但我不确定如何使用每个键返回tableTexts中存储的字符串数组。任何帮助/指针将不胜感激。

1 个答案:

答案 0 :(得分:0)

根据您的规范,相关的表视图委托/数据源方法是

override func tableView(tableView: UITableView, titleForHeaderInSection section: Int) -> String? {
  let pupil = tableTexts[section]
  return pupil.name
}

override func numberOfSectionsInTableView(tableView: UITableView) -> Int {
  return tableTexts.count
}

override func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
  let pupil = tableTexts[section]
  return pupil.subject.count
}

override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
  let cell = tableView.dequeueReusableCellWithIdentifier("Cell", forIndexPath: indexPath)

  let pupil = tableTexts[indexPath.section]
  cell.textLabel!.text = pupil.subject[indexPath.row]
  return cell
}