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
@nil-biribiri
nil-biribiri / RemoveSpace_UICollectionViewCell.swift
Created September 8, 2017 08:18
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)
}