[《NSMutableSet*》unionSet:《NSSet*》];
[《NSMutableSet*》minusSet:《NSSet*》];
[《NSMutableSet*》intersectSet:《NSSet*》];
※リストが表示されない場合
AddBlockなどの広告ブロックツールがONになっているとリストなどが表示されない場合があります。これらのツールをOFFにしてみてください。
#import <Foundation/Foundation.h>
int main (int argc, const char * argv[]) {
@autoreleasepool {
NSMutableSet* set = [NSMutableSet setWithObjects:
@"tuyano",@"taro",@"hanako",@"buhi",nil];
NSMutableSet* set2 = [NSMutableSet setWithObjects:
@"tuyano",@"ihiro",@"hanako",@"hoge",nil];
[set intersectSet:set2];
NSLog(@"%@",set);
}
return 0;
}
| << 前へ | 次へ >> |