Quote:
Originally Posted by iPhoneGuy
In your main view init:
UIBarButtonItem *backButton = [[UIBarButtonItem alloc] initWithTitle:@"Back" style:UIBarButtonItemStylePlain target:nil action:nil];
self.navigationItem.backBarButtonItem = backButton;
[backButton release];
|
hey that did work!!! I was adding that code to the wrong view controller. It's supposed to go inside the calling controller, not the one currently on screen.
Thanks for your help