前提・実現したいこと
コレクションビューのセルを左寄せにしたいです。
###詳細
初歩的な質問で大変恐縮ですが、Swiftでコレクションビューを左寄せで表示したいです。
検索した限りではデフォルトが左寄せになるようですが、下記の画像の通り中央に表示されます。
###わからないこと
・デフォルトが中央にくるのか。
・左寄せにする場合の方法をご教授いただければと思います。
該当のソースコード
ViewController
Swift
1import UIKit 2 3class ViewController: UIViewController, UICollectionViewDelegate, UICollectionViewDataSource { 4 func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int { 5 return 1 6 } 7 8 func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell { 9 let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "cell", for: indexPath) 10 cell.backgroundColor = .red 11 return cell 12 } 13 14 @IBOutlet weak var collectionView: UICollectionView! 15 16 override func viewDidLoad() { 17 super.viewDidLoad() 18 // Do any additional setup after loading the view. 19 } 20 21 22}
試したこと
・セルのView - Content ModeをLeftにしてみましたが変化なしでした。
補足情報(FW/ツールのバージョンなど)
Swift: version 5.1
Xcode: Version 11.2
回答1件
あなたの回答
tips
プレビュー