从文本字段添加entires到UITableView以自动填充

时间:2017-08-27 15:36:08

标签: ios swift uitableview uitextfield

这是我到目前为止的代码。我能够进入文本字段并将其显示在UITableView中,但只有在我重新加载页面并返回它之后。我想要进入文本字段,当我点击“添加”时,它会自动出现在UITableView中。

@IBOutlet var itemTextField: UITextField!
@IBOutlet var table: UITableView!

var items: [String] = []

@IBAction func add(_ sender: Any) {
    let itemsObject = UserDefaults.standard.object(forKey: "items")

    var items:[String]

    if let tempItems = itemsObject as? [String] {
        items = tempItems
        items.append(itemTextField.text!)

        print(items)
    } else {
        items = [itemTextField.text!]
    }

    UserDefaults.standard.set(items, forKey: "items" )
    itemTextField.text = ""
}

override func touchesBegan(_ touches: Set<UITouch>, with event: UIEvent?) {
    self.view.endEditing(true)
}

func textFieldShouldReturn(_ textField: UITextField) -> Bool {
    textField.resignFirstResponder()

    return true
}

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

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
    let cell = UITableViewCell(style: UITableViewCellStyle.default, reuseIdentifier: "cell")

    cell.textLabel?.text = items[indexPath.row]
    cell.textLabel?.font = UIFont(name: "Type02", size: 20)

    return cell
}

override func viewDidAppear(_ animated: Bool) {
    let itemsOBject = UserDefaults.standard.object(forKey: "items")

    if let tempItems = itemsOBject as? [String]{
        items = tempItems
    }

    table.reloadData()
}

func tableView(_ tableView: UITableView, commit editingStyle: UITableViewCellEditingStyle, forRowAt indexPath: IndexPath) {
    if editingStyle == UITableViewCellEditingStyle.delete {
        items.remove(at: indexPath.row)

        table.reloadData()

        UserDefaults.standard.set(items, forKey: "items")
    }
}

2 个答案:

答案 0 :(得分:1)

每当items数组发生更改时,您都需要将表视图告诉reloadData()。因此,请尝试将table.reloadData()添加到add函数的末尾。

答案 1 :(得分:0)

它对我有用。

textfieldtableview添加插座。

 @IBOutlet weak var nametextField: UITextField!
 @IBOutlet weak var dataTableView: UITableView!

添加操作IBAction添加button

@IBAction func addNameToTable(_ sender: Any) {

        // Check for value in nameTextField
        guard let profilename = nametextField.text else{
          return
        }
        // Append text field value in data array
        data.append(profilename)
       // Reload table to show text field name in table
        dataTableView.reloadData()
    }

创建array以保存字符串值 - :

var data = [String]()

添加table方法,在单击“添加”按钮时填充表格中的数据。

func numberOfSections(in tableView: UITableView) -> Int {
        return 1
    }// Default is 1 if not implemented

    // return array count
    func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int{
        return data.count
    }

    // dequeue cell
    func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell{
        let cell = tableView.dequeueReusableCell(withIdentifier: "cell")
        cell.textLabel?.text = data[indexPath.row]
        return cell
    }

    // Row height
    public func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat{
        return 50
    }

完整代码 - :

import UIKit
import AVKit
class ViewController: UIViewController {

    @IBOutlet weak var nametextField: UITextField!
    @IBOutlet weak var dataTableView: UITableView!
    var data = [String]()

    //MArk-: ViewDidLoad
    override func viewDidLoad() {
        super.viewDidLoad()
        // Do any additional setup after loading the view, typically from a nib.
    }

override func didReceiveMemoryWarning() {
        super.didReceiveMemoryWarning()
        // Dispose of any resources that can be recreated.
    }

    @IBAction func addNameToTable(_ sender: Any) {

        guard let profilename = nametextField.text else{
          return
        }
        data.append(profilename)
        dataTableView.reloadData()
    }
}

extension ViewController : UITableViewDelegate,UITableViewDataSource{

    func numberOfSections(in tableView: UITableView) -> Int {
        return 1
    }// Default is 1 if not implemented

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


    func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell{
        let cell = tableView.dequeueReusableCell(withIdentifier: "cell") 
        cell.textLabel?.text = data[indexPath.row]
        return cell
    }

    public func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat{
        return 50
    }
}