菜鸟教程小白 发表于 2022-12-13 10:08:52

ios - NSArray 的 NSArray 中对象属性的 NSPredicate


                                            <p><p>我有一个类似以下结构的对象: Transaction 有一个 Items 数组。 Item 有一个 SubItems 数组</p>

<pre><code>@interface Transaction : NSObject
@property (nonatomic, copy) NSString *id;
@property (nonatomic, assign) NSInteger status;
@property (nonatomic, strong) NSArray *items; // array of Item
@end

@interface Item : NSObject
@property (nonatomic, copy) NSString *identifier;
@property (nonatomic, assign) NSInteger price;
@property (nonatomic, strong) NSArray *subitems;
@end


@interface SubItem : NSObject
@property (nonatomic, copy) NSString *name;
@property (nonatomic, assign) NSInteger price;
@end
</code></pre>

<p>我想创建谓词以从 <strong>NSArray of Transaction</strong> 中查找 <strong>Subitem</strong> 的 <em>name</em> 和 <em>price</em> p>

<pre><code>pred = [NSPredicate predicateWithFormat:
                  @&#34;ANY SELF.%K.%K.%K contains %@&#34;,
                  @&#34;items&#34;,
                  @&#34;subitems&#34;,
                  @&#34;name&#34;,
                  @&#34;MY_SUB_ITEM_NAME&#34;];
</code></pre>

<p>这会产生以下错误。 </p>

<blockquote>
<p>failed: caught &#34;NSInvalidArgumentException&#34;, &#34;Can&#39;t do regex matching
on object (
      MY_SUB_ITEM_NAME ).&#34;</p>
</blockquote>

<p>但是,当我使用类似的格式来查找 Transaction 中的属性时。它工作正常。</p>

<pre><code> pred = [NSPredicate predicateWithFormat:
                  @&#34;SELF.%K LIKE %@&#34;,
                  @&#34;identifier&#34;,
                  @&#34;TX001&#34;];
</code></pre>

<p>我应该如何更正我的谓词以查询 <strong>Item</strong> 和 <strong>SubItem</strong></p> 中的属性</p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>我认为这不能与 <code>-predicateWithFormat:</code> 一起用于两个聚合级别。在 <em>每个</em> 级别上,您可以有一个 <code>ANY</code> 或一个 <code>ALL</code> 聚合。所以“正确”的语法应该是 <code>ANY items ANY subitems.... = ...</code>。或 <code>ANY items ALL subitems....= ..."</code> 或 ...</p>

<p>您可以尝试使用 <code>NSExpression</code> 手动构建谓词,可能使用子查询。</p>

<p>哦,我假设你没有使用 Core Data。因此,只需在循环中手动执行或使用计算属性即可。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - NSArray 的 NSArray 中对象属性的 NSPredicate,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/32263367/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/32263367/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - NSArray 的 NSArray 中对象属性的 NSPredicate