我正在将 Realm 集成到我的应用程序中。我需要知道如何将 custom class 对象存储在 RLMObject 子类 中。
Best Answer-推荐答案 strong>
Realm 中唯一允许保存的属性是,对应 the Documentation :
Realm supports the following property types: BOOL, bool, int,
NSInteger, long, long long, float, double, NSString, NSDate, NSData,
and NSNumber tagged with a specific type.
如果您需要存储另一个对象(您提到的是自定义类的实例),官方支持的方法是创建 RLMObject 的子类(假设您使用的是 Objective-C),并且在父对象中的属性,创建引用,就像在文档中提到的示例一样:
#import <Realm/Realm.h>
@class Person;
// Dog model
@interface Dog : RLMObject
@property NSString *name;
@property Person *owner;
@end
RLM_ARRAY_TYPE(Dog) // define RLMArray<Dog>
// Person model
@interface Person : RLMObject
@property NSString *name;
@property NSDate *birthdate;
@property RLMArray<Dog *><Dog> *dogs;
@end
RLM_ARRAY_TYPE(Person) // define RLMArray<erson>
在这个例子中,我们在 Dog 模型中有一个属性 owner 。我想这就是你要找的。p>
关于ios - 如何在 Realm 中存储 NSObject 类?,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/39591506/
|