macOS/iOS API解説

iOS , Mac アプリケーション開発のために使われる主要フレームワークの日本語情報です。2010年代に書かれた内容です。今後更新はありません。

目次

sendAction:to:

ターゲットにアクションメッセージを送ります
-(BOOL)sendAction:(SEL)theAction
      to:(id)theTarget

解説

ターゲットにアクションメッセージを送ります。

返り値

( BOOL )

送れたかYES/NO

引数

( SEL )theAction

セレクタ

( id )theTarget

ターゲット

フレームワーク

ApplicationKit

クラス

NSControl

Instance Methods

使用可能

10.0

参照

- action
- target

例文

#import "ButAction.h"

@implementation ButAction

- (IBAction)myAction:(id)sender
{
BOOL ret;
//アウトレットswitchClassで接続しているクラスのmyAction:を実行
ret = [sender sendAction:@selector(myAction:) to:switchClass];
//このクラスのmsg1,msg2,msg3を実行
ret = [sender sendAction:@selector(msg1) to:self];
ret = [sender sendAction:@selector(msg2) to:self];
ret = [sender sendAction:@selector(msg3) to:self];
}

- (void)msg1
{
NSLog(@"msg1");
}
- (void)msg2
{
NSLog(@"msg2");
}
- (void)msg3
{
NSLog(@"msg3");
}
@end