web-dev-qa-db-ja.com

Xcodeでプログラムでボタンにアクションを追加するにはどうすればよいですか

インターフェイスビルダーからドラッグしてボタンにIBActionを追加する方法は知っていますが、時間を節約し、絶えず切り替えることを避けるために、プログラムでアクションを追加したいと思います。解決策はおそらく非常に簡単ですが、検索しても答えが見つからないようです。ありがとうございました!

101
aggiesfan64

これを試して:

Swift 4

myButton.addTarget(self,
                   action: #selector(myAction),
                   for: .touchUpInside)

Objective-C

[myButton addTarget:self 
             action:@selector(myAction) 
   forControlEvents:UIControlEventTouchUpInside];

Appleのドキュメントで豊富な情報源を見つけることができます。 IButtonのドキュメント を見ると、UIButtonが IControl、 の子孫であり、このメソッドが ターゲットの追加 を実装していることがわかります。

-

action:@selector(myAction)myActionの後にコロンを追加するかどうかに注意する必要があります。

参照 です。

220
Nick Weaver

迅速な回答:

myButton.addTarget(self, action: "click:", for: .touchUpInside)

func click(sender: UIButton) {
    print("click")
}

ドキュメント: https://developer.Apple.com/documentation/uikit/uicontrol/1618259-addtarget

23
Glauco Neves
CGRect buttonFrame = CGRectMake( 10, 80, 100, 30 );
        UIButton *button = [[UIButton alloc] initWithFrame: buttonFrame];
        [button setTitle: @"My Button" forState: UIControlStateNormal];
        [button addTarget:self action:@selector(btnSelected:) forControlEvents:UIControlEventTouchUpInside];
        [button setTitleColor: [UIColor redColor] forState: UIControlStateNormal];
[view addSubview:button];
14
Developer
 CGRect buttonFrame = CGRectMake( x-pos, y-pos, width, height );   //
 CGRectMake(10,5,10,10) 

 UIButton *button = [[UIButton alloc] initWithFrame: buttonFrame];

 button setTitle: @"My Button" forState: UIControlStateNormal];

 [button addTarget:self action:@selector(btnClicked:) 
 forControlEvents:UIControlEventTouchUpInside];

 [button setTitleColor: [UIColor BlueVolor] forState:
 UIControlStateNormal];

 [view addSubview:button];




 -(void)btnClicked {
    // your code }
8
iOSDeveloper

これを試して:

まず、これをviewcontrollerの.hファイルに書き込みます

UIButton *btn;

次に、viewcontrollers viewDidLoadの.mファイルにこれを記述します。

btn=[[UIButton alloc]initWithFrame:CGRectMake(50, 20, 30, 30)];
[btn setBackgroundColor:[UIColor orangeColor]];
//adding action programatically
[btn addTarget:self action:@selector(btnClicked:) forControlEvents:UIControlEventTouchUpInside];
[self.view addSubview:btn];

view Controllerの.mファイルにこのviewDidLoadメソッドの外側を記述します

- (IBAction)btnClicked:(id)sender
{
   //Write a code you want to execute on buttons click event
}
8
krushnsinh

For Swift

最初にボタンアクションの関数を作成し、次にボタンターゲットに関数を追加します

func buttonAction(sender: UIButton!) {
    print("Button tapped")
}

button.addTarget(self, action: #selector(buttonAction),for: .touchUpInside)
6
SanRam
UIButton *btnNotification=[UIButton buttonWithType:UIButtonTypeCustom];
btnNotification.frame=CGRectMake(130,80,120,40);
btnNotification.backgroundColor=[UIColor greenColor];
[btnNotification setTitle:@"create Notification" forState:UIControlStateNormal];
[btnNotification addTarget:self action:@selector(btnClicked) forControlEvents:UIControlEventTouchUpInside];
[self.view addSubview:btnNotification];


}

-(void)btnClicked
{
    // Here You can write functionality 

}
3
user2677311

UIButtonUIControlを継承します。これには、アクションを追加/削除するすべてのメソッドがあります: IControl Class Reference– sendAction:to:forEvent:および– addTarget:action:forControlEvents:について説明しているセクション「アクションメッセージの準備と送信」を参照してください。

2
odrm
 UIButton *button = [UIButton buttonWithType:UIButtonTypeRoundedRect];
[button addTarget:self 
       action:@selector(aMethod1:)
forControlEvents:UIControlEventTouchUpInside];
[button setTitle:@"Show View" forState:UIControlStateNormal];
button.frame = CGRectMake(80.0, 210.0, 160.0, 40.0);
[view addSubview:button];   
1
Arjun Sa