// // SVScrollingCell.h // iOS7ScrollViews // // Created by Pierre Felgines on 20/06/13. // Copyright (c) 2013 Pierre Felgines. All rights reserved. // #import @protocol SVScrollingCellDelegate; @interface SVScrollingCell : UICollectionViewCell @property (nonatomic, assign) id delegate; @property (nonatomic, retain) UIColor * color; @end @protocol SVScrollingCellDelegate - (void)scrollingCellDidBeginPulling:(SVScrollingCell *)cell; - (void)scrollingCell:(SVScrollingCell *)cell didChangePullOffset:(CGFloat)offset; - (void)scrollingCellDidEndPulling:(SVScrollingCell *)cell; @end