やりたいこと。
コレクションビューの横幅に対してセルを均等3個並ばせるレイアウトを作成したい。
swift
1import UIKit 2 3class SearchViewController: UIViewController{ 4 5 @IBOutlet weak var usersListCollectionView: UICollectionView! 6 7 private let cellId = "cellId" 8 override func viewDidLoad() { 9 super.viewDidLoad() 10 11 usersListCollectionView.backgroundColor = .red 12 usersListCollectionView.delegate = self 13 usersListCollectionView.dataSource = self 14 usersListCollectionView.register(UICollectionViewCell.self, forCellWithReuseIdentifier: cellId) 15 usersListCollectionView.contentInset = .init(top: 0, left: usersListCollectionView.frame.width * 0.025, bottom: 0, right: usersListCollectionView.frame.width * 0.025) 16 } 17} 18 19extension SearchViewController:UICollectionViewDelegate, UICollectionViewDataSource, UICollectionViewDelegateFlowLayout{ 20 func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int { 21 return 10 22 } 23 24 func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell { 25 let cell = usersListCollectionView.dequeueReusableCell(withReuseIdentifier: cellId, for: indexPath) 26 cell.backgroundColor = .white 27 return cell 28 } 29 30 func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize { 31 let collectionViewWidth = usersListCollectionView.frame.width 32 print(collectionViewWidth) 33 let cellWidth = (collectionViewWidth - collectionViewWidth * 0.1) / 3 34 print(cellWidth) 35 return .init(width: cellWidth, height: cellWidth) 36 } 37 38 func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, minimumLineSpacingForSectionAt section: Int) -> CGFloat { 39 print(usersListCollectionView.frame.width * 0.025) 40 return usersListCollectionView.frame.width * 0.025 41 42 } 43 44 45}
思うように動作しなかったのでprintで各幅を出力して確認してみたところピッタリ、コレクションビューの横幅に収まりました。
ですが表示されるコレクションビューはセクションに2つのセルのみです。
私の考えでは、セルの大きさに応じて可変的に一つのセクションに対して割り当てられるセルが収まっていれば3つ表示されると思ったのですがうまく表示されません。なぜでしょうか?
Interface BuilderからcollectionViewを選択して、header sizeとかmin spacingを調整してみてはどうでしょうか?
Collection View の Min Spacing の値は確認しましたか?
https://stackoverflow.com/a/40020312
回答1件
あなたの回答
tips
プレビュー