11

UIScrollView のコンテンツ ビューにある UILabels の UITapGestureRecognizer がメソッドを呼び出していないという問題があります。

ビューの階層は次のとおりです。

  • scrollView (UIScrollView)
    • contentView (UIView)
      • testLabel (UILabel) - ここに UITapGestureRecognizer がアタッチされています

問題を強調するために、コードを例にまとめました

// Set scrollview size - Added in Storyboad
[scrollView setContentSize:CGSizeMake([arrayOfVerbs count]*self.view.frame.size.width, scrollView.contentSize.height)];
[scrollView setCanCancelContentTouches:YES]; // Tried both yes and no
[scrollView setPagingEnabled:YES];

// Add content view
UIView *contentView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, scrollView.contentSize.width, scrollView.contentSize.height)];
[scrollView addSubview:contentView];

// Add test UILabel
UILabel *testLabel = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 200, 100)];
[testLabel setBackgroundColor:[UIColor redColor]];
[testLabel setText:@"Test touch"];
[testLabel setUserInteractionEnabled:YES];
[contentView addSubview:testLabel];

// Add gesture recogniser
UITapGestureRecognizer *singleTap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(playSound:)];
singleTap.numberOfTapsRequired = 1;
[testLabel addGestureRecognizer:singleTap];

これは、タップ ジェスチャ レコグナイザーが呼び出すメソッドです。

- (void)playSound:(UITapGestureRecognizer *)sender {

    NSLog(@"play sound");

    if(sender.state == UIGestureRecognizerStateEnded)
    {
        int pronounNumber = [sender.view tag];
        int exampleNumber = (int)sender.view.frame.origin.x%(int)self.view.frame.size.width;

        NSLog(@"Pronoun is %i and example is %i", pronounNumber, exampleNumber);
    }
}

UILabel に触れようとしたときに、このメソッドが呼び出されることはありません。

このスレッドで提案されているように、スクロール ビューでプロパティ canCancelContentTouches を YES と NO の両方に設定しようとしましたが、まだ機能していません。

奇妙なことに、scrollView の外に UILabel を追加すると、ジェスチャー認識機能が動作します。したがって、問題は私のスクロールビューのサブビューであるコンテンツビューでのみ発生します。

自動レイアウトを使用していますが、違いがある場合は?

ありがとう!

4

3 に答える 3