Swift3 UIButtonの基本
|
イベント追加
1 2 3 4 5 |
btn.addTarget(self, action: #selector(buttonClicked(sender:)), for: .touchUpInside) func buttonClicked(sender:UIButton) { } |
1 2 3 4 5 |
btn.addTarget(self, action: #selector(buttonClicked(sender:)), for: .touchUpInside) func buttonClicked(sender:UIButton) { } |