A resposta aceita funcionou para mim, mas notei quando queria que a imagem da sombra reaparecesse ao voltar ou avançar para outro vc, houve um piscar visível na barra de navegação.
Usando esse método navigationController?.navigationBar.setValue(true, forKey: "hidesShadow")
no viewWillAppear, a barra de sombra está oculta no atual controlador de exibição visível.
Usando esses 2 métodos
navigationController?.navigationBar.setBackgroundImage(nil, for: .default)
navigationController?.navigationBar.setValue(false, forKey: "hidesShadow")
em viewWillDisappear o piscar ainda acontece, mas somente quando a imagem de sombra reaparece e não a barra de navegação.
override func viewWillAppear(_ animated: Bool) {
super.viewWillAppear(animated)
// 1. hide the shadow image in the current view controller you want it hidden in
navigationController?.navigationBar.setValue(true, forKey: "hidesShadow")
navigationController?.navigationBar.layoutIfNeeded()
}
override func viewWillDisappear(_ animated: Bool) {
super.viewWillDisappear(true)
// 2. show the shadow image when pushing or popping in the next view controller. Only the shadow image will blink
navigationController?.navigationBar.setBackgroundImage(nil, for: .default)
navigationController?.navigationBar.setValue(false, forKey: "hidesShadow")
navigationController?.navigationBar.layoutIfNeeded()
}