あなたから理解しているように、タップ時に UIButton に画像を設定する必要があります。
UITapGestureRecognizer を追加すると、デフォルトのタップ認識が削除され、これだけが機能するようになりました。
UITapGestureRecognizer *rec = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(tapRecognized:)];
[cell.addButton addGestureRecognizer:rec];
[rec release];
上記のコードを削除し、これのみを設定する必要があります。
[cell.addButton addTarget:self action:@selector(imageButtonAction:) forControlEvents:UIControlEventTouchUpInside];
imageButtonAction:は次のとおりです。
- (void )imageButtonAction:(UIButton *) b
{
[b setImage:[UIImage imageNamed:@"img.png"] forState:UIControlStateNormal];
}
ボタンの横に画像を追加したい場合、たとえばボタンの左側に画像を追加する場合、関数は次のようになります。
- (void )imageButtonAction:(UIButton *) b
{
UITableViewCell *cell = (UITableViewCell*)[b superview];
NSInteger imgWidth = 50;
UIImageView *img = [[UIImageView alloc]initWithFrame:CGRectMake(b.frame.origin.x - imgWidth,b.frame.origin.y,imgWidth,b.frame.size.height)];
img.backgroundColor = [UIColor redColor];
[cell addSubview:img];
[img release];
}
UIButton *btn = (UIButton *)sender;
UIImageView *backimage = [[UIImageView alloc] initWithFrame:CGRectMake(10,0,312,105)];
//If you want to do this set interaction enabled.
backimage.userInteractionEnabled = YES;
backimage.image=[UIImage imageNamed:@"popupj.png"];
tab1 = [UIButton buttonWithType:UIButtonTypeCustom];
[tab1 setFrame:CGRectMake(-1,2,293,58)];
[tab1 setTitle:@"Record Video" forState:UIControlStateNormal];
[tab1 addTarget:self action:@selector(tab1Action) forControlEvents:UIControlEventTouchUpInside];
[tab1 setImage:[UIImage imageNamed:@"popuptab1j.png"] forState:UIControlStateNormal];
[backimage addSubview:tab1];
今、私はimageViewにボタンを追加していますが、クリックされません