美文网首页
IOS CollectionViewCell嵌套Collecti

IOS CollectionViewCell嵌套Collecti

作者: MrLiangC | 来源:发表于2018-04-16 13:52 被阅读71次

在CollectionViewCell上嵌套CollectionView,点击cell时无效,利用响应链来解决,

重写此方法,当点击Cell时系统会遍历当前视图上的子视图
- (UIView *)hitTest:(CGPoint)point withEvent:(UIEvent *)event {
    //点击获取在哪个视图上
    UIView *view = [super hitTest:point withEvent:event];
    if ([view isKindOfClass:[UICollectionView class]] || [view isKindOfClass:[BarView class]]) {
        return self;
    }
    return [super hitTest:point withEvent:event];
}

相关文章

网友评论

      本文标题:IOS CollectionViewCell嵌套Collecti

      本文链接:https://www.haomeiwen.com/subject/blfekftx.html