Answers for "swift collection view cell size"

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 "swift collection view cell size"

Code answers related to "Swift"

Browse Popular Code Answers by Language