После обновления до iOS 26 системная кнопка «Назад» в моем UINavigationController теперь имеет закругленный полупрозрачный стеклянный фон («капсула с увеличительным стеклом»).
Это нарушает дизайн моего приложения, где мне нужна плоская задняя кнопка только с шевроном или значком и без фона.
Я настраиваю панель навигации глобально:
let appearance = UINavigationBarAppearance()
appearance.configureWithOpaqueBackground()
appearance.backgroundColor = backgroundColor
appearance.shadowColor = .clear
appearance.titleTextAttributes = [.foregroundColor: UIColor.black]
UINavigationBar.appearance().standardAppearance = appearance
UINavigationBar.appearance().scrollEdgeAppearance = appearance
UIBarButtonItem.appearance().tintColor = .black
Подробнее здесь: https://stackoverflow.com/questions/797 ... background
Мобильная версия