アクションを返します
解説
アクションを返します。
初期設定は何もセットされていません。
NSActionCellとそのサブクラスによって実装されます。
引数
フレームワーク
ApplicationKit
クラス
NSCell
Instance Methods
使用可能
10.0
参照
- setAction:
- setTarget:
- target
例文
#import "MyObject.h" @implementation MyObject - (IBAction)myAction:(id)sender { //bCell1はボタンセル [bCell1 setAction:@selector(otherAction)]; [bCell1 setTarget:self]; NSLog(NSStringFromSelector([bCell1 action])); } -(void)otherAction { NSLog(@"!!!"); } @end