0

我有两个实体:ItemNote在此处输入图像描述

保存时分配关系

Item *item = [NSEntityDescription insertNewObjectForEntityForName:@"Item"
                                               inManagedObjectContext:self.managedObjectContext];
Note *note = [NSEntityDescription insertNewObjectForEntityForName:@"Note"
                                               inManagedObjectContext:self.managedObjectContext];

note.noteText = @"test";

[note setInItem:item]; //set relationship??
[self.managedObjectContext save:nil];  // write to database

当我加载数据时,项目属性被加载,但我不知道如何加载这个项目的 note.noteText。

self.itemNameTextField.text = self.item.name;
...
...
self.itemNoteTextField.text = ????????????

谢谢!

4

1 回答 1

1

如果item是一个Item对象,那么item.containNote它是所有相关Note对象的集合。您可以使用

for (Note *note in item.containNote) {
    NSString *text = note.Text;
    // Now you can create a text field for this note and display the text ... 
}
于 2012-10-05T17:25:42.600 回答