I added UICollectionView by code. Now, the app crash with message: UICollectionView must be initialized with a non-nil layout parameter. Do
UICollectionView
UICollectionView must be initialized with a non-nil layout parameter
don't setCollectionViewLayout liked this:
[self.collectionView setCollectionViewLayout:flowLayout];
try to set when init:
[[UICollectionView alloc] initWithFrame:frame collectionViewLayout:defaultLayout];