macOS/iOS API解説

iOS , Mac アプリケーション開発のために使われる主要フレームワークの日本語情報です。2010年代に書かれた内容です。今後更新はありません。

目次

intersectSet:

指定したセットのメンバーでないオブジェクトをレシーバから削除します
-(void)intersectSet:(NSSet *)otherSet:

解説

指定したセットのメンバーでないオブジェクトをレシーバから削除します。

返り値

( void )

なし

引数

( NSSet * )otherSet

セット

クラス

NSMutableSet

Instance Methods

使用可能

10.0

参照

- removeObject:
- removeAllObjects
- minusSet:

例文

#import "MyObject.h"

@implementation MyObject

- (IBAction)myAction:(id)sender
{
NSArray *arr = [NSArray arrayWithObjects:@"aaa",@"bbb",@"ccc",nil];
NSMutableSet *set = [NSMutableSet setWithCapacity:1];
NSMutableSet *set2 = [NSMutableSet setWithObjects:@"aaa",@"ccc",nil];

[set addObjectsFromArray:arr];

NSLog([[set allObjects] description]);
[set intersectSet:set2];
NSLog([[set allObjects] description]);

}

@end