Do you know how to hide the \'back\' button in a UINavigationController? Also, how to show it back, but I guess that\'s very similar to hiding it...
Just like the ma
The solution suggest by Zoran Simic didn't work for me for some reason.
This code did work however:
MyController* controller = [[MyController alloc] init];
NSArray* array = [[[NSArray alloc] initWithObjects:controller, nil] autorelease];
[self.navigationController setViewControllers:array animated:NO];
[controller release];
Obviously you'd have to manipulate an NSArray to your taste to make it work for you. Hope that helps somebody :)