I started to build my iOS apps for iOS 8 and I quickly found out there was an issue with the UICollectionViewCell whatever you use a custom collection layout or not. Many cells were not shown properly, content was cut off, etc.
Quick fix: add the following autoresizing mask to the content view of your cells:
self.contentView.autoresizingMask = UIViewAutoresizingFlexibleHeight|UIViewAutoresizingFlexibleWidth;
This wasn't happening when I was build with the iOS 7 SDK. It also doesn't happen when building with iOS 8 SDK and running on iOS 8.
Is this a bug or is there something different to do since iOS 8?