skip to Main Content

Screen size incorrect after UICollectionView rotation – Ios swift

I have a UICollectionView in my view controller defined as follows: let layout = UICollectionViewFlowLayout() layout.scrollDirection = .vertical layout.minimumLineSpacing = Constants.minimumLineSpacing layout.minimumInteritemSpacing = Constants.minimumInteritemSpacing let collectionView = UICollectionView(frame: .zero, collectionViewLayout: layout) collectionView.backgroundColor = Constants.backgroundColor collectionView.contentInset = Constants.collectionViewContentInsets collectionView.refreshControl = refreshControl…

VIEW QUESTION
Back To Top
Search