我有一个managedObjectContext
,我最初填充了JSON文件的内容。
前几个版本很容易为新内容更新managedObjectContext
,但随着版本数量的增加,很难提供各种版本的文件名来更新
我尝试做的是使用currentVersionJSON
作为Rosetta石头来确定managedObjectContext
中应该删除的内容以及应该删除的内容。我已经获得了"添加"通过JSON
计算出来,但我很难以另一种方式从managedObjectContext
删除旧内容。
我已经通过基于JSON条目创建谓词来确定基于JSON文件内容的managedObjectContext
添加记录,如果它不存在,我加上它。
走另一条路并不容易。基本上,我尝试做的是以下内容:
1)创建一个mocItems
数组,其中包含managedObjectContext
2)创建一个jsonItems
数组,其中包含当前发布版本的内容
3)如果managedObjectContext
中的某个项目位于jsonItems
中,则将其附加到要删除的对象列表中。
现在,它并没有崩溃,但它只是运行并运行和运行。在解决问题方面,我超出了我的深度。我想避免添加CocoaPods,因为我不得不经历并重构一堆东西,而不是在路上。任何反馈意见:我非常感激。我会非常感激。
do {
// Get all items in MOC
var mocItems = [Item]()
// Initialize a fetchRequest
let fetchRequest = NSFetchRequest()
// Tell what entity you want to search
let entityDescription = NSEntityDescription.entityForName("Item", inManagedObjectContext: self.managedObjectContext)
fetchRequest.entity = entityDescription
// Execute fetch and assign arrayOfItems to it
do {
mocItems = try managedObjectContext.executeFetchRequest(fetchRequest) as! [Item]
} catch {
// failure
print("Fetch failed: \(error)")
}
// Get the list of items from the currently shipping version
// Tell where the data is located
let jsonData = NSData(contentsOfURL: itemsToAddURL!)
var jsonItems = NSArray()
// Create an array to dump data from JSON file into
do {
jsonItems = try NSJSONSerialization.JSONObjectWithData(jsonData!, options: NSJSONReadingOptions.MutableContainers) as! NSArray
} catch {
print("json error: \(error)")
}
for item in jsonItems {
let itemDescription = item.valueForKey("itemDescription") as! String
for object in mocItems {
if itemDescription != object.itemDescription {
itemsToDelete.append(object)
}
}
}
}
答案 0 :(得分:0)
感谢Wain指出我正确的方向。我的问题的解决方案非常简单。
我在3个部分中解决了我的问题:
1)从managedObjectContext
2)为我创建的当前版本的JSON文件提取itemDescriptions
项,并将String
转储到Array
中用于比较。
我发现这个答案特别有帮助:
https://stackoverflow.com/a/31859336/4475605
3)将managedObjectContext
中的每个项目与当前版本的JSON内容进行比较。
我在第2步和第3步犯规了。这就是他们现在的样子:
func deleteItems() {
// Create a landing spot for data from MOC & list of items in current version
// All the items in the MOC
var mocItems = [Item]()
var itemsToDelete = [Item]()
// Name of items from the current version
var itemNamesArray = [String]()
do {
// Initialize a fetchRequest
let fetchRequest = NSFetchRequest()
// Tell what entity you want to search
let entityDescription = NSEntityDescription.entityForName("Item", inManagedObjectContext: self.managedObjectContext)
fetchRequest.entity = entityDescription
// Execute fetch and assign mocItems to it
do {
mocItems = try managedObjectContext.executeFetchRequest(fetchRequest) as! [Item]
} catch {
// failure
print("Fetch failed: \(error)")
}
}
// Get the list of items from the currently shipping version
// Tell where the data is located
let jsonData = NSData(contentsOfURL: itemsToAddURL!)
var jsonItems = NSArray()
// Create an array to dump data from JSON file into
do {
jsonItems = try NSJSONSerialization.JSONObjectWithData(jsonData!, options: NSJSONReadingOptions.MutableContainers) as! NSArray
} catch {
print("json error: \(error)")
}
for item in jsonItems as! [Dictionary<String, AnyObject>] {
let itemDescription = item["itemDescription"] as! String
itemNamesArray.append(itemDescription)
}
for item in mocItems {
if itemNamesArray.contains(item.itemDescription) {
// keep it
} else {
itemsToDelete.append(item)
}
}
for item in itemsToDelete {
managedObjectContext.deleteObject(item)
saveContext()
}
}