前提・実現したいこと
UICollectionViewのcellに、imageが拡大表示されてしまいます。
CollectionViewは、横スクロールでページングさせています。
ページングは問題なく出来ているのですが、cellの中が拡大表示に
なってしまっています。原因がわかりません。
該当のソースコード
func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int { return imageArray.count } func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell { guard let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "cell", for: indexPath as IndexPath) as? viewCell else { return UICollectionViewCell() } for subview in cell.contentView.subviews{ subview.removeFromSuperview() } cell.imageView.image = imageArray[indexPath.row] cell.imageView.contentMode = .scaleAspectFit cell.imageView.clipsToBounds = true cell.contentView.addSubview(cell.imageView) return cell } ---------------------------------------------------------------------------- cellのコード import UIKit class viewCell: UICollectionViewCell { @IBOutlet weak var imageView: UIImageView! }
試したこと
どの様に修正したら良いのでしょうか?
ご指導、よろしくお願いいたします。
補足情報(FW/ツールのバージョンなど)
xcode Version 10.1
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/06/17 10:24
退会済みユーザー
2020/06/17 10:44 編集
2020/06/17 11:10
退会済みユーザー
2020/06/17 11:35
2020/06/17 11:38
2020/06/17 11:41
2020/06/17 12:01
退会済みユーザー
2020/06/17 12:21
2020/06/17 12:36
退会済みユーザー
2020/06/17 12:43