Reputation: 2415
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.
Upvotes: 0
Views: 2255
Reputation: 1668
self.minimumLineSpacing = 0;
self.minimumInteritemSpacing=0;
use these in init
method of CollectionViewLayout
Upvotes: 7