核心数据 NSPredicate 转换键值

发布于 2024-12-06 16:27:28 字数 299 浏览 0 评论 0原文

我有一个数据模型,其中包含 id 类型的值,我计划在需要时进行适当的转换。

我是否可以将它们转换为字符串并使用 NSPredicate 将它们与 UISearchBar 中的字符串进行比较,还是必须使用其他方法?

也许是这样的:

NSPredicate * predicate;
    predicate = [NSPredicate predicateWithFormat:@"CAST(%K) contains[cd] %@", employeeID , theSearchBar.text];

I have a data model which has values of type id that I was planning on casting appropriately when needed.

Is it possible for me to cast these as strings and compare them to strings from a UISearchBar using NSPredicate or do I have to use another method?

Maybe something like this:

NSPredicate * predicate;
    predicate = [NSPredicate predicateWithFormat:@"CAST(%K) contains[cd] %@", employeeID , theSearchBar.text];

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

初见 2024-12-13 16:27:28

不可以。CAST() 函数不是这样工作的。我认为您只需假设从 -employeeID 返回的 id 与字符串相当。

No. The CAST() function doesn't work that way. I think you just have to assume that the id returned from -employeeID is comparable to a string.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文