Search code examples
iosobjective-ciphonenavigationuinavigationcontroller

How to hide 'Back' button on navigation bar on iPhone?


I added a navigation control to switch between views in my app. But some of the views shouldn't have 'Back' (the previous title) button. Any ideas about how to hide the back button?


Solution

  • Objective-C:
    self.navigationItem.hidesBackButton = YES;

    Swift:
    navigationItem.hidesBackButton = true