IBOutletCollection和Tap Gesture

时间:2013-09-24 22:08:27

标签: ios objective-c uitapgesturerecognizer iboutletcollection

我正在尝试将UILongPressGestureRecognizerUITapGestureRecognizer添加到IBOutletCollection UIImageViews,但它不起作用。这是我正在使用的代码:

UILongPressGestureRecognizer *pressRecognizer = [[UILongPressGestureRecognizer alloc] initWithTarget:self action:@selector(deleteImage:)];
UITapGestureRecognizer *tapRecognizer = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(selectImage:)];

pressRecognizer.delegate = self;
tapRecognizer.delegate = self;

for (UIImageView *imageView in myImageViewCollection)
{
    [imageView addGestureRecognizer:pressRecognizer];
    [imageView addGestureRecognizer:tapRecognizer];

    imageView.userInteractionEnabled = YES;
}

- (void)selectImage:(UITapGestureRecognizer *)sender
{
    NSLog(@"Select");
}

- (void)deleteImage:(UILongPressGestureRecognizer *)sender
{
    NSLog(@"Delete");
}

- (BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldRecognizeSimultaneouslyWithGestureRecognizer:(UIGestureRecognizer *)otherGestureRecognizer
{
    return YES;
}

我符合UIGestureRecognizerDelegate。我做错了什么?

1 个答案:

答案 0 :(得分:0)

请参阅this question。听起来像是同一个问题。我重新创建了你的问题,手势识别器只绑定到最后一个视图。