如何在 NSPredicate 中获取特定字符串

发布于 2024-11-14 06:17:08 字数 301 浏览 2 评论 0原文

如何在 NSPredicate 中获取字符串 "NSMetadataItemFSNameKey == *"predicateWithFormat 不起作用并崩溃。

Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: 'Unable to parse the format string "NSMetadataItemFSNameKey = *"'

How to get the string "NSMetadataItemFSNameKey == *" in a NSPredicate? predicateWithFormat doesn't work and crashes.

Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: 'Unable to parse the format string "NSMetadataItemFSNameKey = *"'

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

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

发布评论

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

评论(1

怎樣才叫好 2024-11-21 06:17:08

如果您有字符串 @"NSMetadataItemFSNameKey == *" 并希望将其转换为谓词,则不能。它格式错误,因此您会遇到异常。

它需要是:@"NSMetadataItemFSNameKey == '*'"。星号周围的单引号非常重要。

If you have the string @"NSMetadataItemFSNameKey == *" and want to turn it into a predicate, you can't. It's malformed, hence the exception you're getting.

It would need to be: @"NSMetadataItemFSNameKey == '*'". Those single quotes around the asterisk are incredibly important.

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