this answer을 따라 갔고 행당 5 개의 셀을 구현하려고 시도했으며 아래 그림과 같이 iPhone 6을 & iPhone SE에서 확인하면 좋았습니다.셀 간격이 0 인 UICollectionView
하지만 iPhone 6 Plus에서 실행할 때 문제가 발생합니다. 문제를 파악하는 데 도움을 줄 수있는 사람이 있습니까?
이것은 내 코드입니다.
screenSize = UIScreen.main.bounds
screenWidth = screenSize.width
screenHeight = screenSize.height
let itemWidth : CGFloat = (screenWidth/5)
let layout: UICollectionViewFlowLayout = UICollectionViewFlowLayout()
layout.minimumInteritemSpacing = 0
layout.minimumLineSpacing = 0
layout.itemSize = CGSize(width: itemWidth, height: itemWidth)
layout.minimumInteritemSpacing = 0
layout.minimumLineSpacing = 0
layout.sectionInset = UIEdgeInsets(top: 10.0, left: 0, bottom: 10.0, right: 0)
collectionView!.collectionViewLayout = layout
이미지 인 것처럼 보입니다. 그들은? 로커 # 1000? – MNM
layout.itemSize = CGSize (width : itemWidth, height : itemWidth) 이것은 항목 크기를 제어합니다. itemWidth에 screenWidth/5를 사용하려고 시도하십시오. – MNM
@MNM UILabel입니다. Yeap 나는'layout.itemSize = CGSize (width : screenWidth/5, height : screenWidth/5)'를 넣으려고했으나 운이 없다 : ( –