菜鸟教程小白 发表于 2022-12-13 08:32:51

ios - 如何创建获取请求以获取具有特定属性值的对象


                                            <p><p>我想创建一个获取请求,以便获取具有特定属性值的对象。</p>

<p>在我的一个 ViewController 中,我使用如下所示的获取请求:</p>

<pre><code>- (NSFetchRequest *)targetsFetchRequest {

    NSFetchRequest *fetchRequest = ;
    NSSortDescriptor *sortDescriptor = [ initWithKey:@&#34;order&#34; ascending:YES];
    NSArray *sortDescriptors = [ initWithObjects:sortDescriptor, nil];
    ;
    return fetchRequest;
}
</code></pre>

<p>但是现在我为目标对象创建了另一个属性,称为“状态”,并且在另一个 ViewController 中,我想创建一个获取请求以仅获取其状态等于“1”的目标对象...</p>

<p>请帮我弄清楚如何创建这个提取请求。</p>

<p>感谢分配!</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>您需要在获取请求中添加谓词。看看<a href="https://developer.apple.com/library/ios/documentation/Cocoa/Reference/Foundation/Classes/NSPredicate_Class/index.html" rel="noreferrer noopener nofollow">Apple Documentation for NSPredicate</a>和 <a href="https://developer.apple.com/library/ios/documentation/Cocoa/Conceptual/Predicates/AdditionalChapters/Introduction.html" rel="noreferrer noopener nofollow">Predicate Programming Guide</a> .</p>

<p>在你的情况下,你需要这样的东西:</p>

<pre><code>fetchRequest.predicate = ;
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 如何创建获取请求以获取具有特定属性值的对象,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/31083133/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/31083133/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 如何创建获取请求以获取具有特定属性值的对象