| Home 目次>ApplicationKit>NSComboBoxCell | |
indexOfItemWithObjectValue:
指定したオブジェクトの番号を返します
-(int) indexOfItemWithObjectValue:(id)anObject
【返り値】 | |
| int | 整数値 |
| 【パラメータ】 | |
| anObject |
【解説】
指定したオブジェクトの番号を返します。
【例文】
#import "MyObject.h"
@implementation MyObject
- ( IBAction )myAction:( id )sender
{
NSLog([NSString stringWithFormat: @"%d" ,[comboCell1 indexOfItemWithObjectValue: @"iti" ] ]);
}
@end
![]() | |
この記事を評価してください。
| Home 目次>ApplicationKit>NSComboBoxCell | 修正日2006.12.26 |