0
私のアプリにUICollectionView
を追加しました。私は先導、後尾、上のような制約を与えました&コレクションビューの固定高さ。すべてのアイテムを表示しています。しかし、私はそれをスクロールすることはできません。問題が何であるか教えてください。デフォルトでは、インターフェイスビルダーでUIcollectionビューはスクロールしませんか?
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
}
UiCollectionviewのコンテンツが画面の境界を超えていない場合、スクロールできないことがありました。それは事実ですか? コンテンツがビューより小さいにもかかわらずスクロールすることは可能ですが、 – Starlord
が解決しないと、height.top bottomの先頭の後続の制約が問題を解決する可能性があります。 –
これは、UiCollectionViewのすべてのアイテムが表示され、UiCollectionViewがスクロールしていないということです。はいの場合はスクロールするものがないので、これが起こっているはずです。 –