2017-04-20 15 views
0

私はUICollectionViewに2つのセクションがあります。最初はUIPageControl、2番目の単純なUICollectionViewです。 最初と2番目の要素の間には間隔がありますが、それを削除する方法を教えてください。UICollectionView swiftのセクション間のスペースを取り除く方法

enter image description here

プラットフォームiOSの9 *、スウィフト3

+2

可能な重複を解決するためのコレクションビューのUIEdgeInsetsを指定することができますcollectionview](http://stackoverflow.com/questions/28386506/remove-space-between-sections-in-collectionview) – KKRocks

答えて

3

あなたはこの問題にセクション間のスペースを削除[の

func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, insetForSectionAt section: Int) -> UIEdgeInsets { 
     return UIEdgeInsetsMake(0, 0, 0, 0) 
    } 
関連する問題