前言:本篇博客將介紹Realm的一些高級(jí)用法,基本使用在這里
一、配置一對(duì)多關(guān)系
1 // 2 // Teacher.h 3 4 #import <Realm/Realm.h> 5 #import "Student.h" 6 7 @interface Teacher : RLMObject 8 9 @property NSInteger _ID;10 @property NSString *name;11 @property NSInteger age;12 @property NSString *sex;13 @property RLMArray<Student *><Student> *students;14 15 @end
1 // Student.h 2 3 #import <Realm/Realm.h> 4 5 @interface Student : RLMObject 6 7 @property NSString