我的代碼現在只列出了您手動輸入的內容。但是,當用戶切換視圖控制器時,代碼會消失。我試圖使用userdefualts將當前代碼保存在選擇函數中的行數中,但它不會將項保存在tableview單元格中。我只是想保存在tableview單元格中的任何東西。UITableViewCell中的UserDefaults未保存(swift3)
import UIKit
class ViewController: UIViewController, UITableViewDataSource {
var items: [String] = [""]
@IBOutlet weak var listTableView: UITableView!
@IBAction func addItem(_ sender: AnyObject) {
alert()
}
@IBOutlet weak var webView: UIWebView!
override func viewDidLoad() {
super.viewDidLoad()
listTableView.dataSource = self
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "listitem") as! ItemTableViewCell
cell.itemLabel.text = items[indexPath.row]
cell.preservesSuperviewLayoutMargins = false
cell.separatorInset = UIEdgeInsets.zero
cell.layoutMargins = UIEdgeInsets.zero
return cell
}
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
let userDefaults = UserDefaults.standard
userDefaults.setValue(items, forKey: "items")
userDefaults.synchronize()
return items.count
}
func alert(){
let alert = UIAlertController(title: "", message: "", preferredStyle: .alert)
alert.addTextField{
(textfield) in
textfield.placeholder = " Enter "
}
let add = UIAlertAction(title: "Add", style: .default){
(action) in
let textfield = alert.textFields![0]
self.items.append(textfield.text!)
self.listTableView.reloadData()
}
let cancel = UIAlertAction(title: "Cancel", style: .cancel) {
(alert) in
}
alert.addAction(add)
alert.addAction(cancel)
present(alert, animated: true, completion: nil)
}
func tableView(_ tableView: UITableView, commit editingStyle: UITableViewCellEditingStyle, forRowAt indexPath: IndexPath) {
items.remove(at: indexPath.row)
tableView.deleteRows(at: [indexPath], with: .automatic)
}}
當用戶切換視圖控制器時,代碼消失是什麼意思? 'numberOfRowsInSection'曾經被調用過嗎? – Ryan
'items'的類型是什麼?如果它是一個自定義對象,則不能將它們存儲在'UserDefaults'中。 – Ryan
@Ryan當用戶轉到主頁然後轉到列表頁面。所有寫在列表頁面上的東西在退貨時都不見了。 –