how to set background image for navigation bar without covering status bar in swift iOS

66 Views Asked by At

I'm trying to set background image for navigation bar. this is my code:

navBar = navigationController!.navigationBar
let appearance = UINavigationBarAppearance()
appearance.backgroundImage = UIImage(named: "myImage")
navBar.standardAppearance = appearance
navBar.compactAppearance = appearance
navBar.scrollEdgeAppearance = appearance

the result is like this: enter image description here

but I want to achieve this: enter image description here

0

There are 0 best solutions below