macOS/iOS API解説

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

目次

unionSet:

指定したセットのオブジェクトが、レシーバのメンバーのオブジェクトでなければ各オブジェクトを追加します
-(void)unionSet:(NSSet *)otherSet:

解説

指定したセットのオブジェクトが、レシーバのメンバーのオブジェクトでなければ各オブジェクトを追加します。

返り値

( void )

なし

引数

( NSSet * )otherSet

他のセット

クラス

NSMutableSet

Instance Methods

使用可能

10.0

参照

- addObject:
- addObjectsFromArray:

例文

#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:@"ddd",@"eee",nil];

[set addObjectsFromArray:arr];

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

}

@end