origin:http://stackoverflow.com/questions/25753373/ios-8-gm-does-not-update-constraints-on-collection-views
Make a subclass of UICollectionViewCell and make said subclass the superclass of ALL of your cells. It will fix you right up.
Example:
1 2 3 4 5 6 7 8 9 10 11 | @interface MDTCollectionViewCell : UICollectionViewCell @end @implementation MDTCollectionViewCell - (void)setBounds:(CGRect)bounds { [super setBounds:bounds]; self.contentView.frame = bounds; } @end |