PHP中文网2017-04-18 09:30:50
可以用autolayerout在storyboard裡面設置,這是我的一般的做法,因為簡單快速。或者,可以用利用這個協定UICollectionViewDelegateFlowLayout
重寫一個下面這個collectionview 的函數
func collectionView(collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, insetForSectionAtIndex section: Int) -> UIEdgeInsets {
return sectionInsets
}
再在函數外面定義下面的一個變量,這是跟上面return的值一樣的。
private let sectionInsets = UIEdgeInsets(top: -5.0, left: 5.0, bottom: 0.0, right: 5.0)
其餘的可以參考這篇http://www.cnblogs.com/ios8/p...
巴扎黑2017-04-18 09:30:50
func collectionView(collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, insetForSectionAtIndex section: Int) -> UIEdgeInsets {
return sectionInsets
}
重寫這個方法,這個是用來指定間隔的,上、下、左、右的間隔。
歡迎追蹤標哥的技術部落格:http://www.huangyibiao.com/