菜鸟教程小白 发表于 2022-12-12 16:15:52

ios - 从托管对象子类获取属性数组的类方法?


                                            <p><p>我知道我可以从托管对象的实例中获取属性数组,如下所示:</p>

<pre><code>[[ attributesByName] allKeys]
</code></pre>

<p>但是,如果我不想实例化 myManagedObject,而只想向其类询问其属性数组,该怎么办?谢谢</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>您可以从<em>托管对象上下文中获取实体描述</em></p>

<pre><code>NSEntityDescription *entityDesc =
                         [NSEntityDescription entityForName:@&#34;YourEntityName&#34;
                                     inManagedObjectContext:yourContext];
</code></pre>

<p>或来自<em>托管对象模型</em></p>

<pre><code>NSEntityDescription *entityDesc = [@&#34;YourEntityName&#34;];
</code></pre>

<p>无需实例化该实体的实例,
然后检索属性,例如</p>

<pre><code>NSArray *attributes = [ allKeys];
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 从托管对象子类获取属性数组的类方法?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/19869297/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/19869297/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 从托管对象子类获取属性数组的类方法?