Advertisement
Guest User

Untitled

a guest
Jul 28th, 2015
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. @property UICollectionReusableView *collectionHeaderView;
  2.  
  3. - (void)scrollViewWillBeginDragging:(UIScrollView *)scrollView
  4. {
  5. CGPoint translation = [scrollView.panGestureRecognizer translationInView:scrollView.superview];
  6.  
  7. if(translation.y > 0)
  8. {
  9. //dragging down
  10. collectionHeaderView.backgroundColor = <#Whatever you need#>;
  11. } else
  12. {
  13. // dragging up
  14. collectionHeaderView.backgroundColor = [UIColor clearColor];
  15. }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement