补充视图的节号是多少?
What is the section number of a supplementary view?
我正在与 UICollectionViewController
合作。在某些时候,我需要对可见页脚进行一些配置,对于每一个页脚,我都需要知道它的当前节号。当前,因为部分可能会被替换,并且可重用视图的部分可能会更改。
self.collectionView.visibleSupplementaryViews(ofKind: UICollectionView.elementKindSectionFooter)
.filter { [=10=].reuseIdentifier == reuseIdentifierFooter}
.forEach {
// Here I need to know the section number of each view
}
我正在与 UICollectionViewController
合作。在某些时候,我需要对可见页脚进行一些配置,对于每一个页脚,我都需要知道它的当前节号。当前,因为部分可能会被替换,并且可重用视图的部分可能会更改。
self.collectionView.visibleSupplementaryViews(ofKind: UICollectionView.elementKindSectionFooter)
.filter { [=10=].reuseIdentifier == reuseIdentifierFooter}
.forEach {
// Here I need to know the section number of each view
}