UIButton *btnUserImage = [UIButton buttonWithType:UIButtonTypeCustom];
[btnUserImage setFrame:CGRectMake(5, 5, 80, 60)];
[btnUserImage setBackgroundColor:[UIColor clearColor]];
[btnUserImage setTag:indexPath.row];
[btnUserImage addTarget:self action:@selector(btnUser_clicked:) forControlEvents:UIControlEventTouchUpInside];
[cell.contentView addSubview:btnUserImage];
こんにちは、実装しようとしているこの方法がありますが、インデックス path.row が別の .m ファイルにあるため、btnuserimage タグが機能しないという問題があります。一番下のコードは、上記のコードに実装しようとしているものです。別のコントローラーで上記のメソッドを機能させる必要があります。何をすべきかについての提案やヒント。基本的に私が求めているのは、上記のコードが機能するように、下のコードを別のView Controllerに実装する必要があるということです。
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath: (NSIndexPath *)indexPath {