美文网首页
解决Scrollview,collectionview 等与UI

解决Scrollview,collectionview 等与UI

作者: Bruin_熊先森 | 来源:发表于2019-10-28 15:36 被阅读0次

-(UIView *)hitTest:(CGPoint)point withEvent:(UIEvent *)event{

    UIView*view = [superhitTest:pointwithEvent:event];

    if([view isKindOfClass:[UISlider class]]){

        //如果响应view是UISlider,则scrollview禁止滑动

        self.delayCollectView.scrollEnabled = NO;

    }else{//如果不是,则恢复滑动

        self.delayCollectView.scrollEnabled = YES;

    }

    returnview;

}

相关文章

网友评论

      本文标题:解决Scrollview,collectionview 等与UI

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