繁体   English   中英

快速编辑后保存表格视图文本

[英]Saving the tableview text after edited swift

我设法用数组或消息创建了一个表视图,当我点击一个表视图单元时,它显示了一个alertview和一个uitextfield,您可以更改表视图的文本。 我现在想做的是在更改tableview文本(“消息”)时保存它。 因为当我转到另一个视图控制器并返回时,它不会保存。 我是快速编程的新手,想知道如何实现这一目标。 我已经阅读了一些需要使用nsuserdefaults的文章,但我对此并不熟悉。 这是我的下面的代码。 多谢你们。

class Messages: UITableViewController {

    @IBOutlet var uitableView: UITableView!

    var tField: UITextField!
    var index: Int?
    var msgArray: [String]!

    var messages = ["Message 1", "Message 2", "Message 3", "Message 4", "Message 5", "Message 6"]

    override func viewDidLoad() {
        super.viewDidLoad()

        tableView.delegate = self
        tableView.dataSource = self

    }

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

    override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {

        let cell = tableView.dequeueReusableCell(withIdentifier: "Cell", for: indexPath)
        let messagesCell = messages[indexPath.row]
        cell.textLabel?.text = messagesCell

        return cell

    }

    override func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {

        let path = tableView.indexPathForSelectedRow
        index = path?.row

        changeMessage()
    }

    func changeMessage() {

        let alert = UIAlertController(title: "Message", message: "Enter new preset message", preferredStyle: UIAlertControllerStyle.alert)

        alert.addTextField(configurationHandler: configurationTextField)

        let doneAction = UIAlertAction(title: "Done", style: UIAlertActionStyle.default, handler:{ (UIAlertAction) in

            let modelString = self.tField.text
            self.messages[self.index!] = modelString!
            self.tableView.reloadData()

        })

        let cancelAction = UIAlertAction(title: "Cancel", style: .cancel, handler: nil)

        alert.addAction(doneAction)
        alert.addAction(cancelAction)
        self.present(alert, animated: true, completion: nil)
    }

    func configurationTextField(textField: UITextField!){
        if (textField) != nil {
            tField = textField
            textField.text = messages[index!]
        }
    }
}

尝试使用nsuserdefaults。 在SWIFT 3中

override func viewWillAppear(_ animated: Bool) {

     //Get the array
     if let array = UserDefaults.standard.object(forKey:"messages") as? Array<String> {

           self.messages = array
     }

}


func changeMessage() {

    let alert = UIAlertController(title: "Message", message: "Enter new preset message", preferredStyle: UIAlertControllerStyle.alert)

    alert.addTextField(configurationHandler: configurationTextField)

    let doneAction = UIAlertAction(title: "Done", style: UIAlertActionStyle.default, handler:{ (UIAlertAction) in

        let modelString = self.tField.text
        self.messages[self.index!] = modelString!
        UserDefaults.standard.set(self.messages, forKey: "messages") // Set the array with changes
        self.tableView.reloadData()

    })

    let cancelAction = UIAlertAction(title: "Cancel", style: .cancel, handler: nil)

    alert.addAction(doneAction)
    alert.addAction(cancelAction)
    self.present(alert, animated: true, completion: nil)
}
        let defaults = UserDefaults.standard
        defaults.set("123", forKey: "oldString")
    print("\(UserDefaults.standard.value(forKey: "oldString")!)")

这可能对您有帮助。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM