English 中文(简体)
将分级数据输入1份数据?
原标题:Storing hierarchical data to Core Data in 1 pass?

在将数据输入核心数据时,我的孩子们没有拿到母子身份证。 这都是在我通过使用TBXML的Xml文件时产生的。 (缩略语法)

a = NSEntityDescription insertNewObjectForEntityForName:@"A"
set various a attributes
if a.Type isEqualToString:@"TypeA"
    b_set = NSMutableSet new
    for each child element of a
        b = NSEntityDescription insertNewObjectForEntityForName:@"B"
        set various b attributes
        b.a = a
        b_set addObject:b
    next
    a.bs = b_set
end
blah blah blah

如果说并做所有事情,所有东西方和所有东西方都正确保持了“公平”,除非所有东西方都对其(母方)归属无效。

难道我必须重新努力,在创造灯塔之前写字,以便他们有真正的反对。

最佳回答

Reverse relationships are updated as part of -processPendingChanges. That will get called as part of -save:. If you need to, you can call it directly. CoreData will not update the reverse relationships immediately since it s costly.

问题回答

暂无回答




相关问题
List Contents of Directory in a UITableView

I am trying to list the contents of Ringtones directory in a TableView, however, I am only getting the last file in the directory in ALL cells, instead of file per cell. This is my code: - (...

iPhone NSUserDefaults persistance difficulty

In my app i have a bunch of data i store in the NSUserdefaults. This information consists of an NSObject (Object1) with NSStrings and NSNumbers and also 2 instances of yet another object (Object2). ...

Writing a masked image to disk as a PNG file

Basically I m downloading images off of a webserver and then caching them to the disk, but before I do so I want to mask them. I m using the masking code everyone seems to point at which can be found ...

Resize UIImage with aspect ratio?

I m using this code to resize an image on the iPhone: CGRect screenRect = CGRectMake(0, 0, 320.0, 480.0); UIGraphicsBeginImageContext(screenRect.size); [value drawInRect:screenRect blendMode:...

Allowing interaction with a UIView under another UIView

Is there a simple way of allowing interaction with a button in a UIView that lies under another UIView - where there are no actual objects from the top UIView on top of the button? For instance, ...

热门标签