インターフェイスビルダーからドラッグしてボタンにIBActionを追加する方法を知っていますが、プログラムでアクションを追加して時間を節約し、頻繁に切り替えられないようにします。解決策はおそらく本当に簡単ですが、検索しても答えが見つからないようです。ありがとうございました!
インターフェイスビルダーからドラッグしてボタンにIBActionを追加する方法を知っていますが、プログラムでアクションを追加して時間を節約し、頻繁に切り替えられないようにします。解決策はおそらく本当に簡単ですが、検索しても答えが見つからないようです。ありがとうございました!
回答:
これを試して:
スウィフト4
myButton.addTarget(self,
action: #selector(myAction),
for: .touchUpInside)
Objective-C
[myButton addTarget:self
action:@selector(myAction)
forControlEvents:UIControlEventTouchUpInside];
アップルのドキュメントで豊富な情報源を見つけることができます。UIButtonのドキュメントを見ると、UIButtonが、ターゲットを追加するメソッドを実装するUIControlの子孫であることがわかります。
-
後myAction
に
コロンを追加するかどうかに注意を払う必要がありますaction:@selector(myAction)
ここに参照があります。
迅速な答え:
myButton.addTarget(self, action: "click:", for: .touchUpInside)
func click(sender: UIButton) {
print("click")
}
ドキュメント:https : //developer.apple.com/documentation/uikit/uicontrol/1618259-addtarget
:
関数の引数のプレースホルダーとして使用します。以来はclick
取るsender
に置き換えられ、引数、:
セレクタ文字列にします。
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];
これを試して:
まず、これをビューコントローラーの.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];
この外部のviewDidLoadメソッドを、ビューコントローラーの.mファイルに書き込みます。
- (IBAction)btnClicked:(id)sender
{
//Write a code you want to execute on buttons click event
}
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 }
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
}
UIButton
から継承しUIControl
ます。これには、アクションを追加/削除するためのすべてのメソッドがあります:UIControl Class Reference。セクション「アクション・メッセージを準備して送信する」、表紙を見て– sendAction:to:forEvent:
と– addTarget:action:forControlEvents:
。
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];