您好,登錄后才能下訂單哦!
如果多個實體之間有關聯,比如Student
擁有多本書(Book
),怎么像數據庫一樣的能夠表示這種關系?
Core Data提供了relationship來表示實體(Entity)之間的這種關系,包括一對一、一對多等。
1 .打開Core Data的模型文件,可以看到每個Entity都有一個Relationships可以設置。我們在Student里面添加一個books
屬性,并將它的類型(Type)設置為To Many(一對多)。
2 .給Books添加一個owner
屬性,并將Inverse設為books
。這樣的話,只要將book
對象添加到Student
的books
中,就會自動將owner
屬性指向該Student
對象。通過改變實體的展示樣式能夠讓我們看的更加清楚。
3 .通過“Editor > NSManagedObject Subclass...”創建兩個實體所對應的類。
Book:
@interface Book : NSManagedObject @property (nonatomic, retain) NSString * title; @property (nonatomic) float price; @property (nonatomic, retain) Student *owner; @end
Student:
@interface Student : NSManagedObject @property (nonatomic, retain) NSString * name; @property (nonatomic) int32_t age; @property (nonatomic, retain) NSOrderedSet *books; @end @interface Student (CoreDataGeneratedAccessors) //沒有實現- (void)insertObject:(Book *)value inBooksAtIndex:(NSUInteger)idx; - (void)removeObjectFromBooksAtIndex:(NSUInteger)idx; - (void)insertBooks:(NSArray *)value atIndexes:(NSIndexSet *)indexes; - (void)removeBooksAtIndexes:(NSIndexSet *)indexes; - (void)replaceObjectInBooksAtIndex:(NSUInteger)idx withObject:(Book *)value; - (void)replaceBooksAtIndexes:(NSIndexSet *)indexes withBooks:(NSArray *)values; - (void)addBooksObject:(Book *)value;- (void)removeBooksObject:(Book *)value; - (void)addBooks:(NSOrderedSet *)values;- (void)removeBooks:(NSOrderedSet *)values; @end
在Student
是通過一個NSOrderdSet
來表示一對多的關系的。這里之所以沒有使用數組是因為需要保證數據的唯一性。我們還需要注意的是,在Student
類中生成了許多管理Book
的方法,但是這些方法都是沒有實現的。比如我們需要添加一個增加Book
的功能,就需要實現addBooksObject:
。
- (void)addBooksObject:(Book *)value { NSMutableOrderedSet *books = [self.books mutableCopy]; [books addObject:value]; self.books = books;}
4 .保存Student
對象與Book
對象。
NSManagedObjectContext *context = [AppDelegate appDelegate].managedObjectContext;NSEntityDescription *entity = [NSEntityDescription entityForName:@"Student" inManagedObjectContext:context];//創建Student對象Student *stu = [[Student alloc] initWithEntity:entity insertIntoManagedObjectContext:context];int r = arc4random_uniform(1000);stu.name = [NSString stringWithFormat:@"Zhangsan: %d", r];NSEntityDescription *bEntity = [NSEntityDescription entityForName:@"Book" inManagedObjectContext:context];//創建Book對象Book *book = [[Book alloc] initWithEntity:bEntity insertIntoManagedObjectContext:context];book.title = @"紅樓夢";//添加Book對象[stu addBooksObject:book];//保存Student對象[context insertObject:stu];[context save:nil];
5 .查詢Student
對象,并通過打印查看是否保存了Book
,并且能否通過book.owner
得到它與Student
對象的關系。
NSManagedObjectContext *context = [AppDelegate appDelegate].managedObjectContext;NSFetchRequest *request = [NSFetchRequest fetchRequestWithEntityName:@"Student"];NSArray *arr = [context executeFetchRequest:request error:nil];for (Student *stu in arr) { NSLog(@"Name: %@", stu.name); for (Book *b in stu.books) { NSLog(@"Book: %@ -> %@", b.title, b.owner); }}
6 .從結果可以看到,b.owner
確實指向了一個Student
對象。
2015-02-04 09:07:43.391 02-03-CoreDataRelationship[5169:235934] Name: Zhangsan: 333 2015-02-04 09:07:43.394 02-03-CoreDataRelationship[5169:235934] Book: 紅樓夢 -> <Student: 0x7f9720d48bd0> (entity: Student; id: 0xd000000000040000 <x-coredata://C07E5BAC-C3F6-44B6-B21C-C3D3FBFA4ED1/Student/p1> ; data: { age = 0; books = ( "0xd000000000040002 <x-coredata://C07E5BAC-C3F6-44B6-B21C-C3D3FBFA4ED1/Book/p1>" ); name = "Zhangsan: 333";})
7 .總的來說Core Data自動替我們管理了實體(對象)之間的依賴關系,能夠省去不少代碼。
本文檔由長沙戴維營教育整理。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。