我正在尝试创建一个简单的collectionView,如pinterest。我已经遇到了一个问题,我已经在图像中设置了边距,但是你可以看到中边距是20,因为左边和右边都是10,我怎么能这样做,所以它也是10.我试过改变一些价值,但它不起作用。
有更好的方法吗?
func collectionView(collectionView : UICollectionView,layout collectionViewLayout:UICollectionViewLayout,sizeForItemAtIndexPath indexPath:NSIndexPath) -> CGSize
{
return CGSizeMake(self.collectionView!.frame.width/2-20, self.collectionView!.frame.width/2-20+50)
}