ios - 将 Web 服务响应数据分配给 NSManagedObject 子类
<p><p>目前我正在对CoreData Entity的所有属性进行一一赋值,如下所示;</p>
<pre><code>employee.first_name = ;
employee.last_name = ;
employee.middle_name = ;
// And So On... for say, like 100+ more attributes.
</code></pre>
<p>问题:即将引入许多实体,我想避免这些手动分配。</p>
<p>问题:有没有更聪明的方法可以做到这一点?</p>
<p>希望我能说清楚。如果需要任何信息,请告诉我。</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>如果您<strong>确定</strong>传入的字典键<strong>全部</strong>存在于您的托管对象实体上,则可以使用 <code>setValuesForKeysWithDictionary 一步完成分配: </code></p>
<pre><code>;
</code></pre>
<p>但我的意思是要确定。这将为 <code>responseDict</code> 中找到的每个键调用 <code>employee</code> 上的 <code>setValue:forKey:</code>。如果 <code>responseDict</code> 包含任何 <code>employee</code> 无法识别的键,你会得到一个异常说 <code>employee</code> 不符合键值为 key 编码。</p>
<p>如果您不确定,一种安全的方法是为 <code>employee</code> 创建一个 <code>NSManagedObject</code> 子类,并让该子类声明它期望的属性名称列表从网络服务接收。例如,如果一个 <code>Employee</code> 类有一个如下所示的 <code>NSArray</code>:</p>
<pre><code>self.webServicePropertyNames = @[ @"first_name", @"last_name", @"middle_name"];
</code></pre>
<p>...然后您可以遍历该数组并使用 <code>setValue:forKey</code> 来分配每个值,但使用通用代码。</p>
<p>除此之外,您还可以使用 Objective-C 运行时在 <code>employee</code> 上查找属性名称,然后在 <code>responseDict</code> 中找到它们。这将或多或少地像 <code>setValuesForKeysWithDictionary:</code> 一样工作,除非没有尝试分配不存在的键值的危险。这不是微不足道的,而是 <a href="http://www.cimgf.com/2012/01/11/handling-incoming-json-redux/" rel="noreferrer noopener nofollow">I wrote up a blog post describing the process a while ago</a> .</p></p>
<p style="font-size: 20px;">关于ios - 将 Web 服务响应数据分配给 NSManagedObject 子类,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/27800244/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/27800244/
</a>
</p>
页:
[1]