2

テーブルのフッターに画像を割り当てました。タップは、画像の左上から数ピクセル外にあるだけで認識されますが、画像のテーピングでは認識されません。私が間違いを犯している場所を修正していただけますか。画像がタップされたときにメソッドを呼び出す必要がありました。

これがコードです。

-(UIView *) tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section
{    

if(section==1)
{
    UIView *headerView = [[UIView alloc] init];
    timgview = [[UIImageView alloc] initWithFrame:CGRectMake(285, 5, 20, 20)];
    timgview.image = [UIImage imageNamed:@"icon.png"];

    UITapGestureRecognizer *tapped = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(openURL:)];
    tapped.numberOfTapsRequired = 1;
    tapped.numberOfTouchesRequired = 1;
    [timgview addGestureRecognizer:tapped];
    timgview.userInteractionEnabled = YES;

    [headerView addSubview:timgview];

    return headerView;
 }
}

-(void)openURL:(id) sender
{
    NSLog(@"Opening URL");
}
4

0 に答える 0