Answers for "how to make the collection view height according to the size of its cell ios swift"

1

swift collection view cell size

extension YourViewController: UICollectionViewDelegateFlowLayout {
    func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {
        return CGSize(width: screenWidth, height: screenWidth)
    }
}
Posted by: Guest on March-25-2020

Code answers related to "how to make the collection view height according to the size of its cell ios swift"

Code answers related to "Swift"

Browse Popular Code Answers by Language