91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Coredata第二課 實體間的關系

發布時間:2020-06-27 15:29:16 來源:網絡 閱讀:303 作者:wcrane 欄目:開發技術
問題

如果多個實體之間有關聯,比如Student擁有多本書(Book),怎么像數據庫一樣的能夠表示這種關系?

解決方法

Core Data提供了relationship來表示實體(Entity)之間的這種關系,包括一對一、一對多等。

1 .打開Core Data的模型文件,可以看到每個Entity都有一個Relationships可以設置。我們在Student里面添加一個books屬性,并將它的類型(Type)設置為To Many(一對多)。 Coredata第二課 實體間的關系

2 .給Books添加一個owner屬性,并將Inverse設為books。這樣的話,只要將book對象添加到Studentbooks中,就會自動將owner屬性指向該Student對象。通過改變實體的展示樣式能夠讓我們看的更加清楚。

Coredata第二課 實體間的關系

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自動替我們管理了實體(對象)之間的依賴關系,能夠省去不少代碼。

本文檔由長沙戴維營教育整理。


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

英德市| 上高县| 梁平县| 南澳县| 大同市| 甘泉县| 铁岭县| 紫金县| 太白县| 曲周县| 巴马| 合川市| 东海县| 阿克苏市| 遂宁市| 彰武县| 板桥市| 万安县| 河曲县| 郯城县| 西藏| 调兵山市| 平江县| 玛多县| 同江市| 周口市| 惠州市| 德江县| 桂阳县| 石渠县| 宾阳县| 江油市| 长宁县| 铜陵市| 如皋市| 奇台县| 安岳县| 无为县| 甘肃省| 疏附县| 无锡市|