Diego
Diego

Reputation: 2415

UICollectionView space between images

I have this problem. I UICollectionView with a component of the images. I want to add all the images with no space between them. All attributes in ispector UICollectionView component values ​​are 0. I can not understand why sempr remains a space between them: ( Can you help? Thank you. enter image description here

Upvotes: 0

Views: 2255

Answers (1)

Nookaraju
Nookaraju

Reputation: 1668

  self.minimumLineSpacing = 0;
  self.minimumInteritemSpacing=0;

use these in init method of CollectionViewLayout

Upvotes: 7

Related Questions