プログラムでボタンを作成し、次のようにボタンにアクションを追加しています:
[button1 addTarget:self action:@selector(button1) forControlEvents:UIControlEventTouchUpInside];
しかし、フォーマット付きの文字列でセレクターに名前を付けたい..私はこのように試しました:
[b4 addTarget:self action:@selector([NSString stringWithFormat@"button%i", i]) forControlEvents:UIControlEventTouchUpInside];
もちろんこれは機能しませんが、これを機能させるために私ができる同様のことはありますか? あなたが私の問題を理解していれば..