UICollectionView iOS中的项目间距

时间:2015-11-25 07:54:58

标签: ios iphone uicollectionview uicollectionviewlayout

我正在创建一个我想要使用UICollectionView的应用程序。我已经使用了这个,但是我看到项目和两个项目之间的黑色空间被移动到屏幕的左侧和右侧。

internal func collectionView(collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int
    {
        return 20
    }

    internal func collectionView(collectionView: UICollectionView, cellForItemAtIndexPath indexPath: NSIndexPath) -> UICollectionViewCell
    {
        let cell = collectionView.dequeueReusableCellWithReuseIdentifier("productCell", forIndexPath: indexPath) as! ProductCell
        return cell
    }

     internal func numberOfSectionsInCollectionView(collectionView: UICollectionView) -> Int
    {
        return 1
    }

0 个答案:

没有答案