| Home 目次>ApplicationKit>NSActionCell | |
setTag:
アクションセルにタグ値をセットします
-(void) setTag:(NSInteger)anInt
【返り値】 | |
| void | なし |
| 【パラメータ】 | |
| anInt | セットするタグ値 |
【解説】
アクションセルにタグ値(anInt)をセットします。
【例文】
#import "MyObject.h"
@implementation MyObject
- ( IBAction )myAction:( id )sender
{
//but1 は NSTextFieldCell
[but1 setTag: 3 ];
NSLog( @"%d" ,[but1 tag]);
}
@end
![]() | |
この記事を評価してください。
| Home 目次>ApplicationKit>NSActionCell | 修正日2008.1.17 |