
Я хочу, чтобы у нее был чистый фон, как показано ниже.

Я не устанавливаю оттенок или фон для элемента кнопки левой панели. Ниже приведен код внешнего вида панели навигации.
let appearance = UINavigationBarAppearance()
appearance.configureWithOpaqueBackground()
appearance.backgroundColor = backgroundColor
appearance.largeTitleTextAttributes = [NSAttributedString.Key.foregroundColor: titleTextColor]
appearance.titleTextAttributes = [NSAttributedString.Key.foregroundColor: titleTextColor]
self.navigationController?.navigationBar.standardAppearance = appearance
self.navigationController?.navigationBar.scrollEdgeAppearance = self.navigationController?.navigationBar.standardAppearance
self.navigationController?.navigationBar.prefersLargeTitles = prefersLargeTitles
Подробнее здесь: https://stackoverflow.com/questions/798 ... -in-ios-26
Мобильная версия