
Ich möchte, dass der Hintergrund klar ist, wie unten gezeigt.

Ich stelle keinen Farbton oder Hintergrund für das Schaltflächenelement in der linken Leiste ein. Unten finden Sie den Code für das Erscheinungsbild der Navigationsleiste.
Code: Select all
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
Mobile version