[UIKit] CollectionViewCell 의도한 대로 셀 사이즈가 안 나올 때


[UIKit] CollectionViewCell 의도한 대로 셀 사이즈가 안 나올 때

extension FrameworkListViewController: UICollectionViewDelegateFlowLayout { func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize { let interItemSpacing: CGFloat = 10 let paddingSpacing: CGFloat = 16 let width = (collectionView.bounds.width - interItemSpacing * 2 - paddingSpacing * 2) / 3 let height = width * 1.5 return CGSize(width: width, height: height) } 이렇 듯이 셀 사이즈를 코드로 정해놨는데 의도대로 작동이 안 될 때가...


#estimate #size #xcode

원문링크 : [UIKit] CollectionViewCell 의도한 대로 셀 사이즈가 안 나올 때