diffable data source section header blinks during update
问题 I'm currently facing the issue, that when applying a new snapshot to my current data source, that the header, footer and decoration views are not part of the collection view's subviews, which can be noticed as a weird flicker. Did anyone face that issue before? I update the data source via: var snapshot = NSDiffableDataSourceSnapshot<Section, Item>() snapshot.appendSections(Sections.allCases) items.forEach { snapshot.appendItems([$0], toSection: ItemSectionMapper.getSection(for: $0)) } self