Swift:多对关系和 mutableOrderedSetValueForKey 的核心数据问题
Posted
技术标签:
【中文标题】Swift:多对关系和 mutableOrderedSetValueForKey 的核心数据问题【英文标题】:Swift: Core data trouble with to-many relationship and mutableOrderedSetValueForKey 【发布时间】:2016-02-06 14:53:23 【问题描述】:我无法理解为什么我的订购集只保存 1 个条目。
我的代码如下:
let newInovice = NSEntityDescription.insertNewObjectForEntityForName("Invoice", inManagedObjectContext: managedObjectContext) as! InvoiceMO
let itemDetail = NSEntityDescription.insertNewObjectForEntityForName("InvoiceDetail", inManagedObjectContext: managedObjectContext) as! InvoiceDetailMO
// Data Entry
// Add invoice number to Invoice
newInovice.invoiceNumber = getInvoiceNum()
newInovice.date = invoiceDate
// Create mutable set to add details
for items in details
itemDetail.detail = items[PropKeys.itemDescription]
let item = items[PropKeys.itemPrice] ?? "0"
let itemDouble = return Double(item) ?? 0 ()
itemDetail.price = itemDouble
let quantity = items[PropKeys.itemQuantity] ?? "1"
let quantityInt = return Int(quantity) ?? 0 ()
itemDetail.quantity = quantityInt
print("This is the item detail before insertion: \(itemDetail)")
newInovice.mutableOrderedSetValueForKey("invoiceDetails").addObject(itemDetail)
subtotal += itemDouble * Double(quantityInt)
print("details.Count = \(details.count)")
print("Start Mutable \(newInovice.invoiceDetails?.count) End Mutable Set")
// Save the Data
do
try newCustomer.managedObjectContext?.save()
catch
print(error)
我已经阅读了文档,看起来我这样做是正确的,但是即使我已经遍历了对象数组,它也只会向有序集合中添加一个条目。
这是我的调试器,它显示了添加之前的条目以及添加对象后托管对象的计数。 debuggerWindow
我的关系设置如下: relationships
【问题讨论】:
也可以反之设置关系:itemDetail.invoice = newInovice
你能检查一下你没有重新添加同一个对象吗?我的意思是,你能检查一下itemDetail
和之前的不一样吗?
我确实在文档中看到了这种方式,并且现在已经在我的代码中实现了它。干净多了,谢谢。
【参考方案1】:
您只在for
循环之外创建了一个InvoiceDetail
。显然,您必须为数据数组中包含的每个详细信息创建一个。
【讨论】:
谢谢@Mundi!就是这样!我刚刚将行itemDetail = NSEntityDescription.insertNewObjectForEntityForName("InvoiceDetail", inManagedObjectContext: managedObjectContext) as! InvoiceDetailMO
移动到循环中并噗,它正在做它应该做的事情。以上是关于Swift:多对关系和 mutableOrderedSetValueForKey 的核心数据问题的主要内容,如果未能解决你的问题,请参考以下文章
Swift、CoreData 和多对多关系:如何访问子项的顺序?