Есть ли способ сделать очистку переходов без этих белых линий?
В rootView я:
navigationController?.navigationBar.prefersLargeTitles = true
и в Подробный просмотр:
navigationItem.largeTitleDisplayMode = .never
В AppDelegate:
let appearance = UINavigationBarAppearance()
appearance.backgroundColor = .BlackNav
appearance.titleTextAttributes = [.foregroundColor: UIColor.white]
appearance.largeTitleTextAttributes = [.foregroundColor: UIColor.white]
UINavigationBar.appearance().standardAppearance = appearance
UINavigationBar.appearance().compactAppearance = appearance
UINavigationBar.appearance().scrollEdgeAppearance = appearance
Спасибо за ответы!
РЕДАКТИРОВАТЬ:
Решено: строки исчезают, если вы не 't определить UINavigationBar.appearance (). compactAppearance:
UINavigationBar.appearance().standardAppearance = appearance
//UINavigationBar.appearance().compactAppearance = appearance
UINavigationBar.appearance().scrollEdgeAppearance = appearance