我有一個UIView
其中有一個UICollectionview
。爲了知道UICollectionview
的滾動距離,我使用了scrollViewWillBeginDragging:
,但它沒有被調用。 示例代碼是scrollViewWillBeginDragging:未在UICollectionview中調用
- (void)scrollViewWillBeginDragging:(UIScrollView *)scrollView
{
CGPoint translation = [scrollView.panGestureRecognizer translationInView:scrollView.superview];
if(translation.y > 0)
{
//dragging down
_reusableview.backgroundColor = [UIColor blackColor];
}
else
{
// dragging up
_reusableview.backgroundColor = [UIColor clearColor];
}
}
任何人都可以幫助我嗎?
你還沒有添加scrollView!??? –
是collectionview的代表設置正確嗎? –
@sriramhegde:UICollectionView是UIScrollView的子類。 –