Here's what he decided: I added the bottom line to my didRotateFromInterfaceOrientation: method
-(void)didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation{
[super didRotateFromInterfaceOrientation:fromInterfaceOrientation];
[self.collectionView performBatchUpdates:nil completion:nil];
}
source
share