tableView があり、1 つのセルにボタンを作成します。
UIButton *deleteGroupButton = [UIButton buttonWithType:UIButtonTypeCustom];
[deleteGroupButton setFrame:CGRectMake(218, 12, 40, 60)];
[deleteGroupButton addTarget:self action:@selector(deleteGroupButtonClicked:) forControlEvents:UIControlEventTouchUpInside];
ボタンをクリックすると、次のメッセージで例外が発生します。
「キャッチされない例外 'NSInvalidArgumentException' が原因でアプリを終了しています。理由: '-[Group deleteGroup:]: 認識されないセレクターがインスタンス 0x5a8afc0 に送信されました'」
そして、それが私の deleteGroupButtonClicked メソッドです
- (void) deleteGroupButtonClicked: (id) sender {
Groups *tmpGroups = [[Group alloc] init];
NSInteger tmp = appDelegate.selectedGroupId;
[tmpGroups deleteGroup:tmp];
[tmpGroups release];
}