以编程方式访问字典键
我有一个数组和一个字典,我想运行一些 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
intersection
包含一组对象,这些对象同时作为字典和数组中的键存在。intersection
contains a set of the objects that exists both as keys in your dictionary and in your array.