UIScrollView之isTracking delaysContentTouches canCancelContentTouches,
UIScrollView有一個BOOL類型的tracking屬性,用來返回使用者是否已經觸及內容並打算開始滾動,我們從這個屬性開始探究UIScrollView的工作原理:
當手指觸摸到UIScrollView內容的一瞬間,會產生下面的動作:
- 攔截觸摸事件
tracking屬性變為YES
一個內建的計時器開始生效,用來監控在極短的事件間隔內是否發生了手指移動
case1:當檢測到時間間隔內手指發生了移動,UIScrollView自己觸發滾動,tracking屬性變為NO,手指觸摸下即使有(可以響應觸摸事件的)內部控制項也不會再響應觸摸事件。
case2:當檢測到時間間隔內手指沒有移動,tracking屬性保持YES,手指觸摸下如果有(可以響應觸摸事件的)內部控制項,則將觸摸事件傳遞給控制項進行處理。
有很多新聞類的App頂部都有一個滑動功能表列,主要模型可能是由一個UIScrollView包含多個UIButton控制群組成;當你操作的時候,手指如果是很迅速的在上面划過,會發現即使手指觸摸的地方有UIButton,但是並沒有觸發該UIButton的任何觸摸事件,這就是上面提到的case1;當你手指是緩慢划過或根本就沒動,才會觸發UIButton的觸摸事件,這是case2的情況。
上面的工作原理其實有一個屬性開關來控制:delaysContentTouches。預設值為YES;如果設定為NO,則無論手指移動的多麼快,始終都會將觸摸事件傳遞給內部控制項;設定為NO可能會影響到UIScrollView的滾動功能。
再看另一個BOOL類型的屬性canCencelContentTouches,從字面上理解是“可以取消內容觸摸“,預設值為YES。文檔裡的解釋是這樣的:
A Boolean value that controls whether touches in the content view always lead to tracking.
If the value of this property is YES and a view in the content has begun tracking a finger touching it, and if the user drags the finger enough to initiate a scroll, the view receives a touchesCancelled:withEvent: message and the scroll view handles the touch as a scroll. If the value of this property is NO, the scroll view does not scroll regardless of finger movement once the content view starts tracking.
翻譯為中文大致如下:
這個BOOL類型的值控制content view裡的觸摸是否總能引發跟蹤(tracking)
如果屬性值為YES並且跟蹤到手指正觸摸到一個內容控制項,這時如果使用者拖動手指的距離足夠產生滾動,那麼內容控制項將收到一個touchesCancelled:withEvent:訊息,而scroll view將這次觸摸作為滾動來處理。如果值為NO,一旦content view開始跟蹤(tracking==YES),則無論手指是否移動,scrollView都不會滾動。
簡單通俗點說,如果為YES,就會等待使用者下一步動作,如果使用者移動手指到一定距離,就會把這個操作作為滾動來處理並開始滾動,同時發送一個touchesCancelled:withEvent:訊息給內容控制項,由控制項自行處理。如果為NO,就不會等待使用者下一步動作,並始終不會觸發scrollView的滾動了。
可以用一段代碼來驗證並觀察一下,定義一個MyScrollView繼承自UIScrollView,一個MyButton繼承自UIButton,然後重寫部分方法:
MyScrollView.m
- (BOOL)touchesShouldCancelInContentView:(UIView *)view{ [super touchesShouldCancelInContentView:view]; NSLog(@"touchesShouldCancelInContentView"); return YES;}- (void)touchesCancelled:(NSSet *)touches withEvent:(UIEvent *)event{ [super touchesCancelled:touches withEvent:event]; NSLog(@"touchesCancelled");}
MyButton.m
- (void)touchesCancelled:(NSSet *)touches withEvent:(UIEvent *)event{ [super touchesCancelled:touches withEvent:event]; NSLog(@"【Button's touch cancelled】");}- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{ [super touchesBegan:touches withEvent:event]; NSLog(@"【Button's touch began】");}- (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event{ [super touchesMoved:touches withEvent:event]; NSLog(@"【Button's touch moved】");}- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event{ [super touchesEnded:touches withEvent:event]; NSLog(@"【Button's touch ended】");}
其實就是在各個方法執行時列印出一個標記,當canCencelContentTouches值為YES時,使用者觸摸並移動手指再放開:
【Button's touch began】
【Button's touch moved】
……
【Button's touch moved】
touchesShouldCancelInContentView
【Button's touch cancelled】
當canCencelContentTouches值為NO時,使用者觸摸並移動手指再放開:
【Button's touch began】
【Button's touch moved】
……
【Button's touch moved】
【Button's touch ended】
參考連結:
http://www.jianshu.com/p/9436c9a2cd1e
http://blog.csdn.net/opentogether/article/details/52223878