iOS开发类似折800功能中的一个小Demo

So,Simple

"The beginning is the most important part of the work." Plato

1
冰之依韩版女装(程序媛福利)

–核心代码–

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

    //使用的时候用全局变量
    CGFloat lastContentOffset = scrollView.contentOffset.y;
}


-( void )scrollViewDidScroll:( UIScrollView *)scrollView {
    
    if (scrollView.contentOffset.y < lastContentOffset )
    {

        //向上
        NSLog(@"向上");

    } else if (scrollView. contentOffset.y >lastContentOffset ){
        //向下
        NSLog(@"向下");
    }
}

点此—>Demo下载地址
博主app上线了,赶紧点此来围观吧😄

(LBMoviesPossession)


分享文章