如何让UIScrollView一直显示滚动条
1个回答
展开全部
#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
总结一下这个方法的原理:
1)UIScrollView的滚动条是UIImageView
2)UIScrollView被flashScrollIndicators后,过一段时间,他的滚动条就会被调用setAlpha方法
3)由于是通过UIImageView的Category实现的,所以对UIImageView的影响是全局的,所以这个方法通过设置UIScrollView的tag来决定当前UIImageView是不是被影响到的UIImageView
4)如果你希望横向滚动条一直存在,只需要将UIScrollView的tag设置成代码中的noDisableVerticalScrollTag就可以了,然后调用flashScrollIndicators就可以了,不需要手动调用setAlpha的代码,原因见第二点。
这个是网上的参考方案,你可以根据自己的需求进行修改。
#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
总结一下这个方法的原理:
1)UIScrollView的滚动条是UIImageView
2)UIScrollView被flashScrollIndicators后,过一段时间,他的滚动条就会被调用setAlpha方法
3)由于是通过UIImageView的Category实现的,所以对UIImageView的影响是全局的,所以这个方法通过设置UIScrollView的tag来决定当前UIImageView是不是被影响到的UIImageView
4)如果你希望横向滚动条一直存在,只需要将UIScrollView的tag设置成代码中的noDisableVerticalScrollTag就可以了,然后调用flashScrollIndicators就可以了,不需要手动调用setAlpha的代码,原因见第二点。
这个是网上的参考方案,你可以根据自己的需求进行修改。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询