Skip to content

Instantly share code, notes, and snippets.

View sikandarali307's full-sized avatar
:atom:
I may be slow to respond.

Sikandar Ali sikandarali307

:atom:
I may be slow to respond.
View GitHub Profile
@sikandarali307
sikandarali307 / RemoveSpace_UICollectionViewCell.swift
Created September 10, 2020 09:35 — forked from nil-biribiri/RemoveSpace_UICollectionViewCell.swift
Remove space between each UICollectionViewCell
// Conform UICollectionViewDelegateFlowLayout first
extension ViewController: UICollectionViewDelegateFlowLayout{
func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, minimumInteritemSpacingForSectionAt section: Int) -> CGFloat {
return 0.0
}
func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {
return CGSize(width: self.collectionView.bounds.width, height: self.collectionView.bounds.height)
}