I have a project that uses UIViewControllers embedded in navigation view controllers, so the back button is automatically set up for me whenever I segue into any detail of m
These two lines with do the trick. Set leftItemSupplementBackButton to true, and then add leftBarButtonsItems.
leftItemSupplementBackButton
leftBarButtonsItems
self.navigationItem.leftItemsSupplementBackButton = true self.navigationItem.leftBarButtonItems = [barButton]