Reputation: 151
I'm creating a navigation-based app, and I'm wondering how to disable or hide the back buttom in my last view.
Upvotes: 6
Views: 4862
Reputation: 4950
Already answer you in the comment of your previous Question
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view from its nib.
self.navigationItem.hidesBackButton = YES;
//Your other code
}
Upvotes: 10