將UIScrollView的捲軸一直顯示。
查了一下UIScrollView的方法和屬性,發現沒有相應的方法,只有一個flashScrollIndicators相對靠譜點,但是他只會顯現捲軸一小段時間,然後會自動消失。我總不能起一個定時器,一直在刷這個方法吧。
在stackoverflow上搜尋了一下,最後的解決方案指向這個頁面。
貼出原始碼如下:
1. #define noDisableVerticalScrollTag 836913
2. #define noDisableHorizontalScrollTag 836914
3.
4. @implementation UIImageView (ForScrollView)
5.
6. - (void) setAlpha:(float)alpha {
7.
8. if (self.superview.tag == noDisableVerticalScrollTag) {
9. if (alpha == 0 && self.autoresizingMask == UIViewAutoresizingFlexibleLeftMargin) {
10. if (self.frame.size.width < 10 && self.frame.size.height > self.frame.size.width) {
11. UIScrollView *sc = (UIScrollView*)self.superview;
12. if (sc.frame.size.height < sc.contentSize.height) {
13. return;
14. }
15. }
16. }
17. }
18.
19. if (self.superview.tag == noDisableHorizontalScrollTag) {
20. if (alpha == 0 && self.autoresizingMask == UIViewAutoresizingFlexibleTopMargin) {
21. if (self.frame.size.height < 10 && self.frame.size.height < self.frame.size.width) {
22. UIScrollView *sc = (UIScrollView*)self.superview;
23. if (sc.frame.size.width < sc.contentSize.width) {
24. return;
25. }
26. }
27. }
28. }
29.
30. [super setAlpha:alpha];
31. }
32. @end
總結一下這個方法的原理:
1)UIScrollView的捲軸是UIImageView
2)UIScrollView被flashScrollIndicators後,過一段時間,他的捲軸就會被調用setAlpha方法
3)由於是通過UIImageView的Category實現的,所以對UIImageView的影響是全域的,所以這個方法通過設定UIScrollView的tag來決定當前UIImageView是不是被影響到的UIImageView
4)如果你希望橫向捲軸一直存在,只需要將UIScrollView的tag設定成代碼中的noDisableVerticalScrollTag就可以了,然後調用flashScrollIndicators就可以了,不需要手動調用setAlpha的代碼,原因見第二點。
這個是網上的參考方案,你可以根據自己的需求進行修改。