ios - 如何在 Objective c 中更新 Realm 模型属性的类型?
<p><p>我的 Objective-c 中有一个 RLMObject。我定义了一个类似的属性:</p>
<pre><code> @property (assign, nonatomic) NSString *name;
@property (assign, nonatomic) NSString *code;
@property (assign, nonatomic) int day;
@property (assign, nonatomic) int status;
</code></pre>
<p>但现在,我需要将属性代码的类型更改为 int,例如:</p>
<pre><code> @property (assign, nonatomic) int code;
</code></pre>
<p>如果我更改它,那么当我尝试访问模型时,我会收到一个错误,显示类型是 NSString,现在是 int。</p>
<p>如何在不重新安装应用的情况下更改属性?</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>您需要执行迁移,以便数据库中的数据适合新的数据模型。请查看<a href="https://realm.io/docs/objc/latest/#migrations" rel="noreferrer noopener nofollow" title="Migrations">Migrations</a> Realm 文档的部分。</p></p>
<p style="font-size: 20px;">关于ios - 如何在 Objective c 中更新 Realm 模型属性的类型?,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/40365244/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/40365244/
</a>
</p>
页:
[1]