UICollectionViewで動的にマージンを変更したいとき、cellのサイズをstoryboardの設定値から取ってくる
914 ワード
UICollectionViewFlowLayoutを利用していて、セルごとのマージンをデバイスによって変えたりしたい場合の話です。
この方法で、厳密にはstoryboardで設定した値というか、現在のレイアウトで指定されている値が取得できます。
なにげにハマってしまったのでメモです。
下のようなデリゲートメソッドでセルごとの最小マージンを指定するのですが
func collectionView(collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, minimumInteritemSpacingForSectionAtIndex section: Int) -> CGFloat {
guard let flowLayout = collectionViewLayout as? UICollectionViewFlowLayout else {
return 100 //テキトー
}
print(flowLayout.itemSize.width, flowLayout.sectionInset.left)
return 1000 //テキトー
}
- UICollectionViewLayout を UICollectionViewFlowLayout にキャストした flowLayout のなかに色々入ってました。これを使って正しいマージンを計算するとデバイスごとに異なるマージンで出力できますね。
Author And Source
この問題について(UICollectionViewで動的にマージンを変更したいとき、cellのサイズをstoryboardの設定値から取ってくる), 我々は、より多くの情報をここで見つけました https://qiita.com/peka2/items/59378388e560a6d39e78著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .