UIcollection视图不滚动?

时间:2016-09-19 07:00:50

标签: ios iphone swift uicollectionview

我在我的应用中添加了UICollectionView。我已经给出了它的限制,如领先,尾随,顶部和顶部集合视图的一些固定高度。它显示所有项目。但我无法滚动它。请告诉我们这是什么问题?

   func numberOfSectionsInCollectionView(collectionView: UICollectionView) -> Int {

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

        print("count is \(arr_collection.count)")
        return arr_collection.count
    }
    func collectionView(collectionView: UICollectionView, cellForItemAtIndexPath indexPath: NSIndexPath) -> UICollectionViewCell {

        let identifier="col_cell"
        let cell:CollectionCell
        cell=collectionView.dequeueReusableCellWithReuseIdentifier(identifier, forIndexPath: indexPath ) as! CollectionCell
        cell.img_cell.image=UIImage(named: arr_collection[indexPath.row])
        print("arr collection is \(arr_collection[indexPath.row])")
        return cell
    }

1 个答案:

答案 0 :(得分:2)

默认情况下,“接口”构建器中的CollectionViews具有" Bounces"属性已启用,但您必须指定它反弹的方向。如果您没有,并且集合视图的内容未超出集合视图的边界,则您无法滚动。 enter image description here