菜鸟教程小白 发表于 2022-12-13 03:58:18

ios - NSPredicate 用于 NSFetchRequest 中的多个匹配项


                                            <p><p>首先:对不起,如果标题不是很清楚,我无法将我的问题简单地表达出来!</p>

<p>请考虑以下场景:<br/>
- 您正在使用 Core Data 来存储对象<br/>
- 你想从你的上下文中获取对象<br/>
- 您想包含一个谓词以仅获取具有某些属性的对象<br/>
- 您有一个包含键值对的 NSDictionary,其中键表示属性名称,值表示要匹配的所需值</p>

<p><strong>如何最好地实现这一目标?</strong></p>

<p>我目前有以下方法,这是实现此目的的一种快速且可能效率低下的方法:</p>

<pre><code>NSDictionary *attributes = forKeys: ];

// Build predicate format
NSString *predicate = @&#34;&#34;;
NSMutableArray *predicateArguments = [ init];
int index = 0;
for (NSString *key in attributes) {
    NSString *value = ;
    predicate = -1 ? @&#34;&#34; : @&#34;AND &#34;];
    ;
    index++;
}

NSPredicate *matchAttributes = ;
</code></pre>

<p>--</p>

<p><strong>有没有更短或更有效的方法来实现这个谓词?</strong></p>

<p>请注意,由于不支持 NSFetchRequest(核心数据),因此 block 谓词不是一个选项</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>一个稍微短一些,也许更优雅的方法是使用 <code>NSCompoundPredicate</code>:</p>

<pre><code>NSDictionary *attributes = forKeys: ];

// Build array of sub-predicates:
NSMutableArray *subPredicates = [ init];
for (NSString *key in attributes) {
    NSString *value = ;
    ];
}
// Combine all sub-predicates with AND:
NSPredicate *matchAttributes = ;
</code></pre>

<p><strong>添加:</strong>更好(感谢 Paul.s):</p>

<pre><code>NSMutableArray *subPredicates = [ init];
[attributes enumerateKeysAndObjectsUsingBlock:^(id key, id value, BOOL *stop) {
    ];
}];
NSPredicate *matchAttributes = ;
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - NSPredicate 用于 NSFetchRequest 中的多个匹配项,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/18542144/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/18542144/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - NSPredicate 用于 NSFetchRequest 中的多个匹配项