Posts

Post not yet marked as solved
1 Replies
Use UINavigationBarAppearance for UINavigationBar styling with iOS 13 and later Example if #available(iOS 13.0, *) { let appearance = UINavigationBarAppearance() appearance.configureWithOpaqueBackground() appearance.backgroundColor = .black appearance.titleTextAttributes = [ .foregroundColor: .white, .strokeColor: UIColor(red: 131 / 255, green: 125 / 255, blue: 110 / 255, alpha: 1) ] UINavigationBar.appearance().tintColor = .white UINavigationBar.appearance().standardAppearance = appearance UINavigationBar.appearance().scrollEdgeAppearance = appearance }
Post marked as solved
3 Replies
Is this your app? Or an app from some other developer? Another developer's app. Can this problem be fixed without updating the app?