我的 Objective-c 中有一个 RLMObject。我定义了一个类似的属性:
@property (assign, nonatomic) NSString *name;
@property (assign, nonatomic) NSString *code;
@property (assign, nonatomic) int day;
@property (assign, nonatomic) int status;
但现在,我需要将属性代码的类型更改为 int,例如:
@property (assign, nonatomic) int code;
如果我更改它,那么当我尝试访问模型时,我会收到一个错误,显示类型是 NSString,现在是 int。
如何在不重新安装应用的情况下更改属性?
Best Answer-推荐答案 strong>
您需要执行迁移,以便数据库中的数据适合新的数据模型。请查看Migrations Realm 文档的部分。
关于ios - 如何在 Objective c 中更新 Realm 模型属性的类型?,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/40365244/
|