Only my second time using UICollectionView\'s and perhaps I have bitten off more than I can chew but nevertheless:
I am implementing a UICollectionView (myCollection
For me, I update the height of self.view (the collectionView's superview) via autolayout, and MUST call layoutIfNeeded after that.
layoutIfNeeded
[self.view mas_updateConstraints:^(MASConstraintMaker *make) { make.height.equalTo(@(height)); }]; [self.view layoutIfNeeded];