問題描述
我在一個頁面上有幾個 UIScrollView
.您可以單獨滾動它們或將它們鎖定在一起并將它們作為一個滾動.當它們被鎖定時會出現問題.
I've got a a few UIScrollView
on a page. You can scroll them independently or lock them together and scroll them as one. The problem occurs when they are locked.
我使用 UIScrollViewDelegate
和 scrollViewDidScroll:
來跟蹤運動.我查詢 UIScrollView
的 contentOffset
已更改,然后通過將其 contentOffset
屬性設置為匹配來反映更改到其他滾動視圖.
I use UIScrollViewDelegate
and scrollViewDidScroll:
to track movement. I query the contentOffset
of the UIScrollView
which changed and then reflect change to other scroll views by setting their contentOffset
property to match.
太好了....除了我注意到很多額外的電話.以編程方式更改滾動視圖的 contentOffset
會觸發委托方法 scrollViewDidScroll:
被調用.我嘗試使用 setContentOffset:animated:
代替,但我仍然在委托上獲得觸發器.
Great.... except I noticed a lot of extra calls. Programmatically changing the contentOffset
of my scroll views triggers the delegate method scrollViewDidScroll:
to be called. I've tried using setContentOffset:animated:
instead, but I'm still getting the trigger on the delegate.
如何以編程方式修改我的 contentOffsets 以不觸發 scrollViewDidScroll:
?
How can I modify my contentOffsets programmatically to not trigger scrollViewDidScroll:
?
實施說明....每個 UIScrollView
都是自定義 UIView
的一部分,它使用委托模式回調處理協調各種 contentOffset 的呈現
值.UIViewController
子類
Implementation notes....
Each UIScrollView
is part of a custom UIView
which uses delegate pattern to call back to the presenting UIViewController
subclass that handles coordinating the various contentOffset
values.
推薦答案
可以在不觸發委托回調scrollViewDidScroll:
的情況下改變UIScrollView
的內容偏移量,通過設置 UIScrollView
的邊界并將原點設置為所需的內容偏移量.
It is possible to change the content offset of a UIScrollView
without triggering the delegate callback scrollViewDidScroll:
, by setting the bounds of the UIScrollView
with the origin set to the desired content offset.
CGRect scrollBounds = scrollView.bounds;
scrollBounds.origin = desiredContentOffset;
scrollView.bounds = scrollBounds;
這篇關于以編程方式設置 contentOffset 觸發 scrollViewDidScroll的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!