Swift从视图控制器

时间:2018-03-24 18:09:32

标签: swift xcode uitableview class

我是swift的初学者,来自java。我有一个任务类和一个taskcollection类,它是一个任务集合。我试图将集合放入表格视图,但我不知道如何。

这是任务类:

class Task{
private var description : String

init(description: String){
    self.description = description
}

func getDescription() -> String{
    return self.description
}

func setDescription(description: String){
    self.description = description
}}

这是taskCollection类:

class TaskCollection{
private var tasks: Array<Task>

init(){
   self.tasks = [Task]()
}

func getTasks() -> Array<Task>{
    return self.tasks
}
func addTask(task: Task){
    self.tasks.append(task)
}}

要将taskcollection放入tableview,我该怎么办?在java中,我知道我必须创建类似新的TaskCollection(),但我不知道如何在tableviews中获取它:

func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {


    return ?
}

// create a cell for each table view row
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {

    // create a new cell if needed or reuse an old one
    let cell:UITableViewCell = self.tableviewTasks.dequeueReusableCell(withIdentifier: cellReuseIdentifier) as UITableViewCell!

    // set the text from the data model
    cell.textLabel?.text = self.___?_____[indexPath.row]

    return cell
}

// method to run when table view cell is tapped
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
    print("You tapped cell number \(indexPath.row).")
}

2 个答案:

答案 0 :(得分:0)

您将在ViewController文件范围内的某处创建TaskCollection类的实例。然后你把它填充到其他地方(我这样做是以viewDidLoad为例)。行数只是taskCollection实例中的任务数。您可以使用indexPath.row访问每个任务以获取任务数组的索引。

class TableViewController: UITableViewController {

    let taskCollection = TaskCollection()

    override func viewDidLoad() {
        super.viewDidLoad()

        let task = Task(description: "Some Description")
        taskCollection.addTask(task: task)

    }

    // MARK: - Table view data source

    override func numberOfSections(in tableView: UITableView) -> Int {
        return 1
    }

    override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        return taskCollection.getTasks().count
    }


    override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
        let cell = tableView.dequeueReusableCell(withIdentifier: "reuseIdentifier", for: indexPath)

        let task = taskCollection.getTasks()[indexPath.row]

        cell.textLabel?.text = task.getDescription()

        return cell
    }


}

答案 1 :(得分:-1)

首先,不需要创建TaskCollection类,因为它的功能已经在数组中构建,因此,您需要创建一个任务数组

 var tasksArr = [Task]()

//

func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {

  return self.tasksArr.count
}

// create a cell for each table view row
 func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {

// create a new cell if needed or reuse an old one
   let cell:UITableViewCell =   self.tableviewTasks.dequeueReusableCell(withIdentifier: cellReuseIdentifier) as UITableViewCell!

   // set the text from the data model
   cell.textLabel?.text = self.tasksArr[indexPath.row].description 

   return cell
}

根据当前的实施情况

var colc = TaskCollection() 

//

func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {

  return self.colc.tasks.count
}

// create a cell for each table view row
 func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {

// create a new cell if needed or reuse an old one
   let cell:UITableViewCell =   self.tableviewTasks.dequeueReusableCell(withIdentifier: cellReuseIdentifier) as UITableViewCell!

   // set the text from the data model
   cell.textLabel?.text = self.colc.tasks[indexPath.row].description 

   return cell
}