ビューで使用しているボタンにターゲットセレクターを設定します。そして、セレクターメソッド名でメソッドを定義します。
元:
[button addTarget:self action:@selector(YourMethodName) forControlEvents:UIControlEventTouchUpInside]; // Declare this where you are adding button in view.
-(void)YourMethodName // Use this where you need to perform that button action.
{
// Do what you need.
}
また、実行時にそのボタンを含むビューを追加する場合は、別のトリックを試してください。ボタンを追加するときにそのボタンのタグ値を設定します。コントローラで、タグ値を介してそのボタンにアクセスし、ボタンにターゲットを追加します。
元;
UIButton *btn = (UIButton*)[self.view viewWithTag:10];
[btn addTarget:self action:@selector(methodName) forControlEvents:UIControlEventTouchUpInside];