개발/아이오에스

switf] collectionview 셀 간격 설정하기

dev.jake 2021. 3. 4. 11:15

적용전

developer.apple.com/documentation/uikit/uicollectionviewdelegateflowlayout/1617705-collectionview

 

Apple Developer Documentation

 

developer.apple.com

 

func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, minimumLineSpacingForSectionAt section: Int) -> CGFloat {

        return 0

    }

 

minimumLineSpacingForSectionAt을 사용해서 셀간격을 조절한다. (섹션의 연속적인 행 또는 열 사이의 간격을 대리인에게 요청합니다.)

 

 

적용후