Our app has an UINavigationBar with an image on it. When we segue (push) to another screen then click the back button the image on the Navigation Bar seems to animate from left to right as it reappears. This is a little distracting. How can you remove this back button animation?
We tried changing the segue Animates setting but this changes both the push animation and not the back animation.
Our Nav Bar code:
let logoImage:UIImage = UIImage(named: "ABC")!
viewController.navigationItem.titleView = UIImageView(image: logoImage)
Figured this out in large part due to this answer https://stackoverflow.com/a/8602982/47281
Create a custom Nav Bar and override
popItem
:Entered
MyNavigationBar
as the Navigation Bar class for our Navigation Controller via the Storyboard:Note I did not override NavigationController
popViewControllerAnimated
as in the linked answer.You can do this:
And then create a method to handle the tap on the button