| Home 目次>ApplicationKit>NSComboBoxCell このサイトはこちらに移転しました。 | |
deselectItemAtIndex:
指定した番号を選択解除します
-(void) deselectItemAtIndex:(int)index
【返り値】 | |
| void | なし |
| 【パラメータ】 | |
| index | 番号 |
【解説】
指定した番号を選択解除します。
【例文】
#import "MyObject.h"
@implementation MyObject
- ( IBAction )myAction:( id )sender
{
[comboCell1 selectItemAtIndex: 2 ];
NSLog([NSString stringWithFormat: @"%d" ,[comboCell1 indexOfSelectedItem] ]);
[comboCell1 deselectItemAtIndex: 2 ];
}
@end
![]() | |
この記事を評価してください。
| Home 目次>ApplicationKit>NSComboBoxCell | 修正日2006.12.26 |