hei, I'm new to navigation controllers and I've got one question for something that should be rather simple: How do I change the "back" item on the left site to have the title "Back" instead of the title of the previous view? I've tried this:
self.navigationItem.leftBarButtonItem.title =@"Back";
and it doesn't work, even though I can use similar code to add an image on the left, like this:
CGRect frame = CGRectMake(0, 0, 22.5, 22.5);
UIButton *closeButton = [[UIButton alloc] initWithFrame:frame];
[closeButton setBackgroundImage:UA_ICON_CLOSE_UI forState:UIControlStateNormal];
[closeButton addTarget:self action:@selector(closeView)
forControlEvents:UIControlEventTouchUpInside];
[closeButton setShowsTouchWhenHighlighted:YES];
UIBarButtonItem *rightButton =[[UIBarButtonItem alloc] initWithCustomView:closeButton];
self.navigationItem.rightBarButtonItem=rightButton;