5

UILongPressGestureRecognizer次のコードを実装すると、関数が呼び出されない uilabel.whenを取得するにはどうすればよいですか。それで、私が何を間違えたのか教えてください。

UILongPressGestureRecognizer *longPress = [[UILongPressGestureRecognizer alloc]      initWithTarget:self action:@selector(LabelLongPressed:)];
longPress.minimumPressDuration = 0.5;  // Seconds
longPress.numberOfTapsRequired = 0;

[objlblDuplicate addGestureRecognizer:longPress];
[longPress release];
4

1 に答える 1

24

デフォルトでは、UILabel はタッチ イベントを取得できません。

objlblDuplicate.userInteractionEnabled = YES;
于 2012-05-16T06:30:41.183 に答える