Как удалить белые линии внизу панели навигации при переходе от больших заголовков к маленьким заголовкам - PullRequest
0 голосов
/ 07 мая 2020

enter image description here Есть ли способ сделать очистку переходов без этих белых линий?

В 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
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...