@Tmmn Add this code to your collectionView or another scrollView-based class:
if #available(iOS 26.0, *) {
collectionView.topEdgeEffect.style = .hard
}
If you want even more old-school style:
if #available(iOS 26.0, *) {
collectionView.topEdgeEffect.isHidden = true
}
Configure appearance for navigationItem:
let appearance = UINavigationBarAppearance()
appearance.configureWithDefaultBackground()
appearance.backgroundEffect = UIBlurEffect(style: .systemChromeMaterial)
navigationItem.standardAppearance = appearance
Also it can be configured globally:
UINavigationBar.appearance().standardAppearance = appearance
Topic:
UI Frameworks
SubTopic:
UIKit
Tags: