次のコードを使用してボタンを tableviewcell に追加しました。ボタンが押されたときに、それがどの行であったかを知る必要があります。だから私はボタンにタグを付けました(playButton viewWithTag:indexPath.row)ボタンが押された、またはなぜこのようにクラッシュするのか ありがとう
-(void)configureCell: (UITableViewCell *)cell atIndexPath:(NSIndexPath *)indexPath {
UIButton *playButton = [UIButton buttonWithType:UIButtonTypeCustom] ;
[playButton setFrame:CGRectMake(150,5,40,40)];
[playButton viewWithTag:indexPath.row] ; //Tagging the button
[playButton setImage:[UIImage imageNamed:@"play.png"] forState:UIControlStateNormal];
[playButton addTarget:self action:@selector(play) forControlEvents: UIControlEventTouchUpInside];
[cell addSubview:playButton];
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
UITableViewCell *beatCell = nil;
beatCell = [tableView dequeueReusableCellWithIdentifier:@"beatCell"];
if (beatCell == nil){
beatCell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"beatCell"];
}
[self configureCell:beatCell atIndexPath:indexPath];
return beatCell;
}
-(void) play:(id) sender{
UIButton *play = sender;
NSLog(@"Play %i" , play.tag);
}