Reputation: 473
I wish to retain the navigationBar background color and image, but don't know how to remove (only) the border color.
Upvotes: 1
Views: 839
Reputation: 473
In Swift 3, I figured it out by simply doing this:
self.navigationController?.navigationBar.shadowImage = UIImage();
Upvotes: 1