我正在从plist获取一些数据到UITableview。
但是,当我尝试重新加载数据以仅显示应用程序崩溃的剩余单元格时,我正在尝试删除选定的数据。
我认为问题是当我使用tableview.reloadData()
时,但我不确定如何解决这个问题。如果我不使用重载数据,当我重新打开视图控制器时,单元格将被删除。
有什么建议吗?
func tableView(tableView: UITableView, commitEditingStyle editingStyle: UITableViewCellEditingStyle, forRowAtIndexPath indexPath: NSIndexPath) {
if editingStyle == UITableViewCellEditingStyle.Delete {
let row = indexPath.row
let plistPath = NSSearchPathForDirectoriesInDomains(.DocumentDirectory, .UserDomainMask, true) as NSArray
let DocumentsDirectory = plistPath[0] as! String
let path = DocumentsDirectory.stringByAppendingPathComponent("notes.plist")
let fileManager = NSFileManager.defaultManager()
if (!fileManager.fileExistsAtPath(path)) {
if let bundlePath = NSBundle.mainBundle().pathForResource("notes", ofType: "plist") {
let resultDictionary = NSMutableDictionary(contentsOfFile: bundlePath)
println("Bundle notes.plist file is --> \(resultDictionary?.description)")
fileManager.copyItemAtPath(bundlePath, toPath: path, error: nil)
println("copy")
} else {
println("notes.plist not found")
}
} else {
println("note.plist already exists")
//fileManager.removeItemAtPath(path, error: nil)
}
let resultDictionary = NSMutableDictionary(contentsOfFile: path)
//resultDictionary?.removeAllObjects()
resultDictionary?.removeObjectForKey(allKeys[row])
resultDictionary!.writeToFile(path, atomically: false)
println("Loaded notes.plist file is --> \(resultDictionary?.description)")
tableView.reloadData()
}
}
最佳答案
关于调用reloadData(),文档说:“不应该在插入或删除行的方法中调用它,特别是在通过调用beginUpdates和endUpdates实现的动画块中。”因此,最好重新加载进行更改的部分,如果涉及动画,则调用begin和end
tableView.beginUpdates()
tableView.reloadRowsAtIndexPaths(path, withRowAnimation: UITableViewRowAnimation.Automatic)
tableView.endUpdates()
而且最好使用自己的nsfilemanager实例,因为默认实例只在主线程中工作。而且,在写入文件时,您不安全地展开resultDictionary,这可能会导致崩溃
附言,
let path = DocumentDirectory.stringByAppendingPathComponent("notes.plist")
替换为stringByAppendingString n swift 2,仅供参考
关于ios - Swift-tableview.reloadData()使应用程序崩溃,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/32790492/