最近项目有个需求,实现滑动视图(比如scrollerview)的滚动条一直显示,初步以为很简单,结果加上查阅资料,花了很长时间才解决这个问题,在这里跟大家做个简单的分享。之前查阅的资料,都归结为SetAlpha,贴出一个比较有代表性的代码片段(截图,感兴趣的可以去网上搜)。
#define noDisableVerticalScrollTag 836913
#define noDisableHorizontalScrollTag 836914
@implementation UIImageView (ForScrollView)
- (void) setAlpha:(float)alpha {
if (self.superview.tag == noDisableVerticalScrollTag) {
if (alpha == 0 && self.autoresizingMask == UIViewAutoresizingFlexibleLeftMargin) {
if (self.frame.size.width < 10 && self.frame.size.height > self.frame.size.width) {
UIScrollView *sc = (UIScrollView*)self.superview;
if (sc.frame.size.height < sc.contentSize.height) {
return;
}
}
}
}
if (self.superview.tag == noDisableHorizontalScrollTag) {
if (alpha == 0 && self.autoresizingMask == UIViewAutoresizingFlexibleTopMargin) {
if (self.frame.size.height < 10 && self.frame.size.height < self.frame.size.width) {
UIScrollView *sc = (UIScrollView*)self.superview;
if (sc.frame.size.width < sc.contentSize.width) {
return;
}
}
}
}
[super setAlpha:alpha];
}
@end
这个方法写的好像蛮有逻辑,我尝试了一下没有成功(可能是因为我当时在scrollerview的父视图的XIB文件上创建的imageview?),索性换了一个写法,我个人觉得是比较合适的,具体逻辑如下:
1️.将原有的showsVerticalScrollIndicator
属性设置为NO,隐藏了原有的滚动提示条。
2️.在XIB文件上创建一个Imageview ,设置颜色,准备用它来做指示滚动条,设置颜色初始位置等(代码创建也可以)。
3️.在系统的这个方法里面- (void)scrollViewDidScroll:(UIScrollView *)scrollView
,根据scrollerview或者collectionview的Contentsize
做逻辑运算(只要在拖动的时候就会执行这个方法)。
4️.将试图外滚动条的多余部分做成不显示的效果。
以上就是较为简单的逻辑,下面是代码的实现部分:
创建完毕后(_mCollectionView
是需要一直显示滚动条的scrollerview,_mImageIndicator
是用xib创建的imageview类型的指示条),实现代理方法
- (void)scrollViewDidScroll:(UIScrollView *)scrollView
{
// CGPoint contentCenter=_mCollectionView.contentOffset;
// NSLog(@"原点%@",NSStringFromCGPoint(contentCenter));
// _mImageIndicator.center=CGPointMake(_mImageIndicator.center.x, contentCenter.y);
float zoom = 0;
zoom= scrollView.contentOffset.y/(scrollView.contentSize.height -scrollView.frame.size.height+(_mImageIndicator.frame.size.height-_mImageIndicator.frame.size.height*scrollView.frame.size.height/scrollView.contentSize.height));
_mImageIndicator.frame=CGRectMake(_mCollectionView.frame.size.width-3,zoom*scrollView.contentSize.height*216/kScreenHeight,3,_mImageIndicator.frame.size.height);
NSLog(@"offset.y:%f",scrollView.contentOffset.y);
NSLog(@"indicator.y:%f",_mImageIndicator.frame.origin.y);
}
216/kScreenHeight
这个是scrollerview本身的宽度和屏幕宽度的比例(如果你的scrollerview或者collectionview展示满了整个屏幕,那就不需要乘以这个比例)
Demoviewcontroller
是collectionview的父视图,设置它的clipsToBounds
属性为YES,让指示条的多余部分不显示即可。
运行,完美实现功能,首篇简书,欢迎指正0.0