以编程方式访问字典键

发布于 2024-11-02 13:18:22 字数 89 浏览 3 评论 0原文

我有一个数组和一个字典,我想运行一些 for 循环来查看数组中的元素是否等于字典中的每个键。

有没有办法使用 Objective-C 来做到这一点?

I have an array and a Dictionary and I would like to run some for loops to see if the elements in the array are equal to each of the keys in the Dictionary.

Is there a way to do this using objective-c?

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

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

发布评论

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

评论(1

失去的东西太少 2024-11-09 13:18:22
NSMutableSet *intersection = [[NSMutableSet alloc] init];
[intersection addObjectsFromArray:array];
[intersection intersectSet:[NSSet setWithArray:[dictionary allKeys]]];

intersection 包含一组对象,这些对象同时作为字典和数组中的键存在。

NSMutableSet *intersection = [[NSMutableSet alloc] init];
[intersection addObjectsFromArray:array];
[intersection intersectSet:[NSSet setWithArray:[dictionary allKeys]]];

intersection contains a set of the objects that exists both as keys in your dictionary and in your array.

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