NSMutableSet *intersection = [NSMutableSet setWithArray:newsmall];
//this shows an array of newsmall as expected
NSLog(@"intersection %@", intersection);
[intersection intersectSet:[NSSet setWithArray:newnewbig]];
//this shows nothing
NSLog(@"intersection %@", intersection);
//this shows an array of newnewbig as expected
NSLog(@"newnewbig %@", newnewbig);
NSArray *arrayfour = [intersection allObjects];
//this shows nothing
NSLog(@"arrayfour %@", arrayfour);
newsmall과 newnewbig에 일치하는 문자열이 있으므로 arrayfour에 몇 개의 문자열이 표시 될 것으로 예상됩니다.NSSet의 NSArray는 NSLog에 아무것도 표시하지 않습니다.
내가 뭘 잘못 했니?