Reputation: 851
As the tile says I simply need to find a way to make invisible the lower border of the navigationBar like the photo below:
could anyone help me?!
Upvotes: 1
Views: 83
Reputation: 5797
This is the code from that link, just add this in your AppDelegate.swift to make it global.
UINavigationBar.appearance().setBackgroundImage(
UIImage(),
forBarPosition: .Any,
barMetrics: .Default)
UINavigationBar.appearance().shadowImage = UIImage()
Upvotes: 2