前言:本篇博客将介绍Realm的一些高级用法,基本使用在这里
一、配置一对多关系
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