为了比较这两个数组,我使用了 NSMutableSet,然后将这两个集合相交以获得数组中的共同结果。NSMutableSet *set1 = [NSMutableSet setWithArray:array];
[set1 intersectSet:[NSSet setWithObject:[NSNumber numberWithInt:70]]];
NSArray *intersectArray = [[NSArray alloc]init];
intersectArray =[set1 allObjects];
NSLog(@"the testing array is %@",[intersectArray objectAtIndex:0])];
它给了我完美的答案,但是当 set1 没有像 set2 那样的共同元素时它会崩溃。intersectArray 为空。如何获取 intersectArray 的 nil 值。