0

カスタムでtableViewを使用しているiPadアプリを作成していますが、ユーザーがカスタムセルの追加ボタンをクリックすると、そのボタンの位置xとyを取得し、imageViewを中心に設定する必要がありますそのボタン。

ポイントを取得するコードを検索しましたが、セルがカスタムであるため、これを cell.addButton に追加する方法を追加します。

        [cell.imageButton addTarget:self action:@selector(imageButtonActionOne:) forControlEvents:UIControlEventTouchUpInside];
    [cell.addButton addTarget:self action:@selector(imageButtonAction:) forControlEvents:UIControlEventTouchUpInside];

これがタッチのコードです

    UITapGestureRecognizer *rec = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(tapRecognized:)];
   [cell.addButton addGestureRecognizer:rec];
    [rec release];

しかし、この方法では cell.addButton imageButtonAction にあるメソッドは呼び出されません。

4

2 に答える 2

1

あなたから理解しているように、タップ時に 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にボタンを追加していますが、クリックされません

于 2013-07-04T09:57:27.303 に答える
0

UIButton の場合、ボタン機能を直接使用できます

-(IBAction) imageButtonAction:(id) sender
{
  UITableViewCell *cell = (UITableViewCell *)[[sender superview] superview];
  UIButton *btn = (UIButton *)sender;
  //[btn setimage:[UIImage imagenamed:dimagename];
  UIImageview *backimage = [[UIImageView alloc] initWithFrame:btn.frame];
  [cell addSubview:backimage];
}       
于 2013-07-04T09:57:08.603 に答える