菜鸟教程小白 发表于 2022-12-13 09:49:42

ios - 我可以为非 NSString 数据类型匹配 NSPredicate 吗?


                                            <p><p>在我的模型类 (Beacon.h) 中,我有这个属性</p>

<pre><code>@property (strong, nonatomic, readonly) NSUUID *uuid;
</code></pre>

<p>我有一个包含该 Beacon 类的对象的数组,我想使用 NSPredicate 对其进行过滤。如果 uuid 类型是字符串,它可以工作:</p>

<pre><code>@property (strong, nonatomic, readonly) NSString *uuid;

// ..

NSPredicate *predicate = %@ &#34;,strUUID];
NSArray *filterArray = ;
</code></pre>

<p>当 uuid 属性是 NSUUID(不是 NSString)时,我如何编写 NSPredicate。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>用于匹配 UUID 的 Swift 样式谓词,其中 <code>identifier</code> 是您的 UUID 属性的名称(适用于 Core Data):</p>

<pre><code>NSPredicate(format: &#34;identifier == %@&#34;, uuid as CVarArg)
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 我可以为非 NSString 数据类型匹配 NSPredicate 吗?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/26860010/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/26860010/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 我可以为非 NSString 数据类型匹配 NSPredicate 吗?