Prior to iOS 10, I had a self-sizing table view that solely consisted of a UICollectionView with self-sizing cells using a standard UICollectionViewFlowLayout. The collection v
I got same issue when develop my app on iOS 10. Remove the first line solved my problem.
self.collectionView.frame = CGRectMake(0, 0, targetSize.width, FLT_MAX); //Remove this
Hope this help!