I am sort of newbie in Three20 world, and I am trying to hide the back/left button in navigation bar.
Below is the method I am calling to hide it:
[[TTNavigator navigator].topViewController.navigationController.navigationItem setLeftBarButtonItem:nil animated:YES];
[[TTNavigator navigator].topViewController.navigationController.navigationItem setHidesBackButton:YES animated:YES];
Apparently, both the methods doesn't hide the back button. What I am here trying to do is, push the viewcontroller, and when the new controller arrives it doesn't show the back button, yet I had another button there which pop's the view.
I have also tried different routes as:
[VC.navigationController.navigationItem setHidesBackButton:Yes];
The funny part is I am about to set the Title though as:
[VC.navigationItem setTitle:@"Options"];
Any help here will be really appreciated. Thanks.