ユーザーが投稿を報告できるアプリを作成しています。ユーザーがレポートボタンを押したときにアクションシートが必要です。これは私のコードです:
[self.avatarImageView.profileButton addTarget:self action:@selector(didTapReportButtonAction:) forControlEvents:UIControlEventTouchUpInside];
ここに didTapReportButtonAction コードがあります:
- (void)didTapReportButtonAction:(UIButton *)button {
UIActionSheet *actionSheet = [[UIActionSheet alloc] initWithTitle:@"Title" delegate:nil cancelButtonTitle:@"Cancel" destructiveButtonTitle:@"Destructive" otherButtonTitles:@"Other1", @"Other2", nil];
actionSheet.actionSheetStyle = UIActionSheetStyleBlackTranslucent;
[actionSheet addButtonWithTitle:@"Add"];
[actionSheet showInView:[UIApplication sharedApplication].keyWindow];
}
しかし、今報告ボタンを押しても何も起こりません。誰かがこれで私を助けることができますか?