我有一个数组和一个字典,我想运行一些for循环来查看数组中的元素是否等于Dictionary中的每个键。
有没有办法用objective-c做到这一点?
答案 0 :(得分:1)
NSMutableSet *intersection = [[NSMutableSet alloc] init];
[intersection addObjectsFromArray:array];
[intersection intersectSet:[NSSet setWithArray:[dictionary allKeys]]];
intersection
包含一组对象,这些对象在字典和数组中都作为键存在。