如何使UIScrollView的捲軸indicator一直顯示

來源:互聯網
上載者:User

將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的代碼,原因見第二點。

這個是網上的參考方案,你可以根據自己的需求進行修改。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.