6

我试过继承 UICollectionView 并覆盖touchesBegan:withEvent:and hitTest:WithEvent:,当我触摸一个单元格时,这两种方法都会触发。但是,如果我触摸单元格之间的空间,则什么也不会发生。这是我创建的:

@interface WSImageGalleryCollectionView : UICollectionView
@end

..和..

@implementation WSImageGalleryCollectionView

- (void) touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
    NSLog(@"Touches began");
    [super touchesBegan:touches withEvent:event];
}

- (UIView *)hitTest:(CGPoint)point withEvent:(UIEvent *)event {
    NSLog(@"Hit test reached");
    return [super hitTest:point withEvent:event];
}

@end

注意:手势识别器似乎有完全相同的问题,这就是为什么我尝试使用 touchesBegan 来降低级别。

4

3 回答 3

12

您只需将视图设置为背景视图,然后您可以添加手势识别器来喜欢:

collectionView.backgroundView = [[UIView alloc] init];
[collectionView.backgroundView addGestureRecognizer:[[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(tapOnBackgroundRecognized)]];
于 2014-03-20T05:38:18.073 回答
0

就我而言,问题是只要背景颜色“清晰”,您就可以单击它。否则,只需设置背景颜色即可使背景可点击。我不太清楚为什么会这样,但简单的解决方法就是给它一个背景颜色。

编辑:实际上,这可能与设置“不透明”标志有关。

于 2013-11-03T10:38:13.183 回答
0

你一定有其他东西阻止touchesBegan射击。

在 a 中进行子类UICollectionView化和使用该子类UICollectionViewController将允许您检测在touchesBegan.

我刚刚通过修改 Apple 的CollectionView-simple 示例进行了尝试。

于 2013-11-03T10:24:24.460 回答