指定した番号のオブジェクトを選択に追加します
-(BOOL)addSelectionIndexes:(NSIndexSet *)indexes:
解説
指定した番号のオブジェクトを選択に追加します。
返り値
( BOOL )
YES/NO
引数
( NSIndexSet * )indexes
フレームワーク
ApplicationKit
クラス
NSArrayController
Instance Methods
使用可能
10.3
参照
-removeSelectionIndexes:
例文
- (IBAction)addSelection:(id)sender; { NSLog(@"!!!"); [myOutlet addSelectionIndexes:[NSIndexSet indexSetWithIndexesInRange:NSMakeRange(1,2)]]; }