iOSkingkr / Giftatte22

선물 어플을 개발할꺼에요
3 stars 0 forks source link

메인 메뉴 (온보딩) - CollectionView #3

Open DevKDuck opened 2 years ago

DevKDuck commented 2 years ago

메인 메뉴 (온보딩) 중앙에 배치할 CollectionView 부분 구현중 이슈 발생

현재 상황

문제점

DevKDuck commented 2 years ago
 func collectionView(_ collectionView: UICollectionView, layout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {
        let frameWidth = self.view.frame.width
        let horizontalMargin: CGFloat = frameWidth * (56 / 375)
        let width = frameWidth - (horizontalMargin * 2)
        let height = width * (442 / 260)
        return CGSize(width: width, height: height)
스크린샷 2022-05-27 오후 9 20 19

하지만 mini보다 크기가 작은 SE로 실행할 시 여전히 잘림현상이 있음

스크린샷 2022-05-27 오후 9 21 04 스크린샷 2022-05-27 오후 9 21 12