以编程方式访问字典键

时间:2011-04-20 18:17:11

标签: objective-c nsmutablearray nsmutabledictionary

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

有没有办法用objective-c做到这一点?

1 个答案:

答案 0 :(得分:1)

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

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