美文网首页
自定义滚动条高度及滑动距离

自定义滚动条高度及滑动距离

作者: 精神薇 | 来源:发表于2020-04-15 21:40 被阅读0次
    -(void)scrollViewDidScroll:(UIScrollView *)scrollView{
        double indicatorHeight = scrollView.height/scrollView.contentSize.height*scrollView.height;
        self.indicatorView.frame = CGRectMake(WIDTH-Fit3XSizeW(5), CGRectGetMinY(self.textScrollView.frame)+scrollView.contentOffset.y/(scrollView.contentSize.height-scrollView.height)*(scrollView.height-indicatorHeight), Fit3XSizeW(5), indicatorHeight);
    }
    

    相关文章

      网友评论

          本文标题:自定义滚动条高度及滑动距离

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