gpt4 book ai didi

ios - 如何在 Swift 的核心数据应用程序的 UITableView 中保存复选标记状态

转载 作者:行者123 更新时间:2023-11-28 12:52:49 25 4
gpt4 key购买 nike

我已经使用 Core Data 实现了一个列表应用程序。我想做的是添加复选标记,这样用户可以单击一个单元格,然后会出现一个勾号以表明它已完成。

我不知道如何保存这些复选标记,所以当应用程序关闭、打开或重新启动时,复选标记仍会存在于特定的单元格上。我应该用 CoreData 还是 NSUserDefaults 来实现它?我将如何使用这些实现它?

这是目前的代码:

cellForRowAtIndex :

override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {

let cell = tableView.dequeueReusableCellWithIdentifier("Cell")! as UITableViewCell
let item = Items[indexPath.row]
cell.textLabel?.item = task.valueForKey("item") as? String

return cell
}

DidSelectRowAtIndex:

override func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {


let selectedRow:UITableViewCell = tableView.cellForRowAtIndexPath(indexPath)!

if selectedRow.accessoryType == UITableViewCellAccessoryType.None {

selectedRow.accessoryType = UITableViewCellAccessoryType.Checkmark

selectedRow.tintColor = UIColor.greenColor()

} else {

selectedRow.accessoryType = UITableViewCellAccessoryType.None

}
}

我们将不胜感激。

最佳答案

您需要在数据模型(核心数据对象)而不是单元格中跟踪完成状态。正如您所发现的那样,单元格被重新使用,而且单元格不会持久存在,因此不会保存复选标记状态。

我会用这样的东西:

override func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {

let taskObject=self.listItems[indexPath.row]
var taskStatus = taskObject.valueForKey("completed") as? Bool ?? false

taskObject.setValue(!taskStatus,forKey:"completed") // Toggle completed status

do {
try managedContext.save()
} catch let error as NSError {
print("Cannot save object: \(error), \(error.localizedDescription)")
}

tableView.deselectRowAtIndexPath(indexPath,animated:false)

tableView.reloadRowsAtIndexPaths([indexPath], withRowAnimation: .None)
}

然后,在您的 cellForRowAtIndexPath 中,您可以适本地呈现该行:

override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {

let cell = tableView.dequeueReusableCellWithIdentifier("listCell") as! UITableViewCell
let task = listItems[indexPath.row]
let taskStatus = task.valueForKey("completed") as! Bool
cell.textLabel?.text = task.valueForKey("task") as? String

var accessoryType=UITableViewCellAccessoryType.None
var tintColor = UIColor.clearColor()

if (taskStatus) {
accessoryType=UITableViewCellAccessoryType.Checkmark
tintColor = UIColor.greenColor()
}

cell.accessoryType=accessoryType
cell.tintColor = tintColor

return cell
}

关于ios - 如何在 Swift 的核心数据应用程序的 UITableView 中保存复选标记状态,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35927621/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com