如何将字符串保存到表View?

时间:2016-08-23 21:42:00

标签: ios swift uitableview

这是代码:

import UIKit

var reminder = [String]()

class ViewController: UIViewController, UITableViewDelegate, UITableViewDataSource {

    @IBOutlet weak var textField: UITextField!

    @IBAction func checkMarkTapped(sender: AnyObject) {
        reminder.append(textField.text!)
        textField.text = ""
    }

    @IBAction func addReminder(sender: AnyObject) {
    }

    func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        return reminder.count
    }

    func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
        var cell:CoustemCell = tableView.dequeueReusableCellWithIdentifier("Cell") as! CoustemCell
        cell.tableViewLabel.text = reminder[indexPath.row]
        return cell
    }
}

所以,当你按下checkMarkTapped时,它会将textField中放置的内容添加到表View中。但是我在checkMarkTapped中放入的代码可能会起作用但会不断崩溃。

那么我做错了什么?

1 个答案:

答案 0 :(得分:0)

module.exports = function (client) {
  client.end();
};