iOS使用UICollectionView只允许向左方向滑动,不允许向右方向滑动。

来源:互联网 发布:发射后不管知乎 编辑:程序博客网 时间:2024/05/22 05:19

-(void)scrollViewDidScroll:(UIScrollView *)scrollView{

    

    if (scrollView ==《这里换成你的UICollocView子类》) {

        //禁止右划

        staticfloat newx = 0;

        staticfloat oldx = 0;

        newx= scrollView.contentOffset.x ;

        

        if (newx < oldx) {

            self.collectionView.scrollEnabled =NO;

            self.collectionView.scrollEnabled =YES;

        }

        

        oldx = newx;

    }


}

原创粉丝点击