diff --git a/Source/IGListCollectionView.m b/Source/IGListCollectionView.m index 6a0a3aa3..feace35a 100644 --- a/Source/IGListCollectionView.m +++ b/Source/IGListCollectionView.m @@ -13,7 +13,12 @@ - (instancetype)initWithFrame:(CGRect)frame collectionViewLayout:(UICollectionViewLayout *)layout { if (self = [super initWithFrame:frame collectionViewLayout:layout]) { - self.backgroundColor = [UIColor whiteColor]; + + UIColor *backgroundAppearanceColor = (UIColor *) [[[self class] appearance] backgroundColor]; + if (!backgroundAppearanceColor) { + self.backgroundColor = [UIColor whiteColor]; + } + self.alwaysBounceVertical = YES; } return self;