我对UICollectionView
文档的插图与边距不完全了解。使用UICollectionViewFlowLayout
时,有一个名为sectionInsetReference
的属性,可以是:
.fromContentInset
.fromSafeArea
.fromLayoutMargins
在UICollectionViewFlowLayout
文档和UICollectionViewLayout
文档(其超类)中,在流布局文档中仅提及空白处的空白:
sectionInset:用于在部分中布置内容的边距
如果sectionInset
是用于布局的边距,则.fromLayoutMargins
必须引用节插图。那么.fromContentInset
引用了什么?因为当我使用.fromContentInset
时,它似乎是在引用节插图。那么.fromLayoutMargins
所引用的这些神秘的布局边距是什么,我该如何编辑它们?