答えて

0

UICollectionView

スクリーンショットdelegate性質を有しています。いくつかのクラス、例えばView ControllerにUICollectionViewDelegateFlowLayoutを実装する必要があります。

// Space around the section. 
func collectionView(_ collectionView: UICollectionView, 
        layout collectionViewLayout: UICollectionViewLayout, 
        insetForSectionAt section: Int) -> UIEdgeInsets { 
    return UIEdgeInsets(top: 20, left: 20, bottom: 20, right: 20) 
} 

// In case of vertical layout this is a vertical space between horizontal rows inside of each section 
func collectionView(_ collectionView: UICollectionView, 
        layout collectionViewLayout: UICollectionViewLayout, 
        minimumLineSpacingForSectionAt section: Int) -> CGFloat { 
    return 20 
} 

// Horizontal space between items in row 
func collectionView(_ collectionView: UICollectionView, 
        layout collectionViewLayout: UICollectionViewLayout, 
        minimumInteritemSpacingForSectionAt section: Int) -> CGFloat { 
    return 20 
} 

この方法は、間隔を担当しています

関連する問題