欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

ios 添加scrollView滚动到一定程度的方法。

程序员文章站 2023-12-22 09:15:27
...

 

//- (void)scrollViewWillEndDragging:(UIScrollView *)scrollView withVelocity:(CGPoint)velocity targetContentOffset:(inout CGPoint *)targetContentOffset

//{

//    SJBLog(@"====%f,,,%f",velocity.y,scrollView.contentOffset.y);

//    if (velocity.y > 0.09f) {

//velocity.y 是滑动的速率。。。。

//        

//    }else if (velocity.y < - 0.09f ){

 

//}

 

 

- (void)scrollViewDidEndDragging:(UIScrollView *)scrollView willDecelerate:(BOOL)decelerate{

    SJBLog(@"====,,,%f,,%f",scrollView.contentOffset.y,self.mainTable.contentSize.height - (kScreenHeight - kNavigationBarHeight - kTabbarHeight) );

    if (scrollView.contentOffset.y < - 50) {

        //向下拉到50松手后,

    }elseif (scrollView.contentOffset.y -(self.mainTable.contentSize.height - (kScreenHeight - kNavigationBarHeight - kTabbarHeight))>50){

       //向上拉到50松手后,

    }

 

 

}

上一篇:

下一篇: