Skip to content

Instantly share code, notes, and snippets.

@paweldudek
Created June 26, 2014 09:01
Show Gist options
  • Save paweldudek/ec69177479dfc15fcab5 to your computer and use it in GitHub Desktop.
Save paweldudek/ec69177479dfc15fcab5 to your computer and use it in GitHub Desktop.
UICollectionView Layout
@interface TAPCarouselCollectionViewLayout : UICollectionViewFlowLayout
@end
@implementation TAPCarouselCollectionViewLayout
#pragma mark - Invalidating Layout
- (BOOL)shouldInvalidateLayoutForBoundsChange:(CGRect)newBounds {
return !CGSizeEqualToSize(self.collectionView.bounds.size, newBounds.size);
}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment