1
我有一個滾動視圖,顯示不同的uiimageviews,並且每次只顯示一個(它會捕捉,所以總是隻顯示一個)。我如何檢查顯示哪一個?像...如何檢查當前是否在iPhone中顯示視圖?
if(imgView.bounds == self.view.bounds)
?
我有一個滾動視圖,顯示不同的uiimageviews,並且每次只顯示一個(它會捕捉,所以總是隻顯示一個)。我如何檢查顯示哪一個?像...如何檢查當前是否在iPhone中顯示視圖?
if(imgView.bounds == self.view.bounds)
?
也許
if (CGRectIntersectsRect(imgView.frame, scrollView.bounds))
(假設scrollView
是你的UIScrollView)
nope沒有工作。 – Marty 2011-01-20 10:48:19
可能重複:[viewWillAppear中的子視圖(http://stackoverflow.com/questions/2950309/viewwillappear-for-subviews/2950979 #2950979) – DarkDust 2011-01-20 10:46:23