如何使用 Swift 保存从 tableView 上的 textField 收到的用户答案
Posted
技术标签:
【中文标题】如何使用 Swift 保存从 tableView 上的 textField 收到的用户答案【英文标题】:How do you save user answers received from a textField on a tableView using Swift 【发布时间】:2017-08-14 01:14:02 【问题描述】:我做了一个小测验,其中 tableView 包含不同的问题和答案作为标签和文本字段。
如果输入正确答案,tableView 单元格变为绿色,textField 文本已设置,并且 textfield 变为不可编辑。
我的问题是这些设置都没有保存。我需要它记住问题是否被正确回答并相应地更改单元格。我知道我可以使用核心数据或用户默认值来保存内容,但我不确定如何获取正确回答的特定单元格以保存。
我的代码如下:
表视图控制器
import UIKit
class TableViewController: UITableViewController, UITextFieldDelegate
let questions = ["what is 3 + 5", "what is the meaning of life","what
is the number from the jim carrey movie"]
let answers = ["8","42","23"]
var textfieldColor = UIColor(red:0.98, green:0.23, blue:0.42,
alpha:1.0)
var textFieldText = ""
var isTextFieldEditable = true
override func viewDidLoad()
super.viewDidLoad()
override func didReceiveMemoryWarning()
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int
// #warning Incomplete implementation, return the number of rows
return answers.count
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell
let cell = tableView.dequeueReusableCell(withIdentifier: "Answers", for: indexPath) as! TableViewCell
cell.question.text = questions[indexPath.row]
cell.backgroundColor = textfieldColor
cell.answerOutlet.text = textFieldText
cell.isUserInteractionEnabled = isTextFieldEditable
cell.answerOutlet.delegate = self
return cell
func textFieldShouldReturn(_ textField: UITextField) -> Bool
print(answers.contains(textField.text!))
if answers.contains(textField.text!)
textfieldColor = UIColor.green
textFieldText = textField.text!
isTextFieldEditable = false
let rowNumber = answers.index(of: textField.text!)
let indexPath = IndexPath(item: rowNumber!, section: 0)
tableView.reloadRows(at: [indexPath], with: .top)
return true
TableViewCell:
import UIKit
class TableViewCell: UITableViewCell
@IBOutlet weak var question: UILabel!
@IBAction func Answer(_ sender: UITextField)
@IBOutlet weak var answerOutlet: UITextField!
override func awakeFromNib()
super.awakeFromNib()
// Initialization code
override func setSelected(_ selected: Bool, animated: Bool)
super.setSelected(selected, animated: animated)
// Configure the view for the selected state
感谢您的帮助。
【问题讨论】:
当你的意思是保存时,你的意思是即使在应用重启后数据仍然存在? 【参考方案1】:您可以在函数textFieldShouldReturn
内部添加一个布尔检查,并将值存储在一个数组中并保存,如下所示:
correct[rowNumber!] = true
UserDefaults.standard.set(correct, forKey: "Correct")
然后,使用数组改变tableView中表格的加载:
if correct[indexPath.row] == false
cell.backgroundColor = textfieldColor1
cell.answerOutlet.text = textFieldText
cell.isUserInteractionEnabled = isTextFieldEditable
if correct[indexPath.row] == true
cell.backgroundColor = textfieldColor2
cell.answerOutlet.text = answers[indexPath.row]
cell.isUserInteractionEnabled = false
最后,在每次加载视图时检查 viewDidLoad 中是否有任何结果存储在 UserDefaults 中:
if let corretAnswers = UserDefaults.standard.object(forKey: "Correct")
correct = corretAnswers as! [Bool]
【讨论】:
忘了告诉你;您需要通过重复初始化“正确”数组:错误计数:3以上是关于如何使用 Swift 保存从 tableView 上的 textField 收到的用户答案的主要内容,如果未能解决你的问题,请参考以下文章
如何在swift 4中重新排序单元格后保存tableView顺序
如何使用 Swift 从 tableview 和 sqlite3 中删除
如何在 iOS Swift 中将选定的 tableView 单元格保存到数组中?