Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have root ViewController and detailed ViewController. When i push to detailedViewController i get leftBarButtonItem with the title from the root one. But i want the title to be just "Back", nothing more. So how to do that?

This doesn't help

self.navigationItem.leftBarButtonItem.title = @"Back";

To create my on type barButtonItem(for example 104 with left arrow) and to set it to leftBarButtonItem is terrible decision.

Is there other way than to change the title of the rootViewController manually before pushing?

share|improve this question
There are already many questions concerning this problem out there. Like stackoverflow.com/questions/2197698/… and from there on, many more to follow. – Sebastian Wramba Feb 26 '12 at 9:49
Aha, sorry for missing that – Buron Feb 26 '12 at 9:52
@Buron What do you mean with terrible decision? – flexaddicted Feb 26 '12 at 11:27

2 Answers

up vote 2 down vote accepted

From Apple's doc:

backBarButtonItem

The bar button item to use when a back button is needed on the navigation bar.

@property(nonatomic, retain) UIBarButtonItem *backBarButtonItem Discussion

When this navigation item is immediately below the top item in the stack, the navigation controller derives the back button for the navigation bar from this navigation item. When this property is nil, the navigation item uses the value in its title property to create an appropriate back button. If you want to specify a custom image or title for the back button, you can assign a custom bar button item (with your custom title or image) to this property instead. When configuring your bar button item, do not assign a custom view to it; the navigation item ignores custom views in the back bar button anyway.

So, you can create create your barButtonItem (e.g. – initWithTitle:style:target:action:) and assign it to that property.

In addition, if you want to have a custom image for UIBarButtonItem (left or right) I suggest you to create a category extension like the following:

//UIBarButtonItem+Extension.h    
+ (UIBarButtonItem*)barItemWithImage:(UIImage*)image title:(NSString*)title target:(id)target action:(SEL)action;

//UIBarButtonItem+Extension.m    
+ (UIBarButtonItem*)barItemWithImage:(UIImage*)image title:(NSString*)title target:(id)target action:(SEL)action
{
    UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
    button.frame = CGRectMake(0.0, 0.0, image.size.width, image.size.height);
    button.titleLabel.textAlignment = UITextAlignmentCenter;

    [button setBackgroundImage:image forState:UIControlStateNormal];
    [button setTitle:title forState:UIControlStateNormal];
    [button addTarget:target action:action forControlEvents:UIControlEventTouchUpInside];

    UIBarButtonItem* barButtonItem = [[UIBarButtonItem alloc] initWithCustomView:button];

    return [barButtonItem autorelease];    
}

and then use it as

UIBarButtonItem* backBarButtonItem = [UIBarButtonItem barItemWithImage:[UIImage imageNamed:@"YoutImageName"] title:@"YourTitle" target:self action:@selector(doSomething:)];
share|improve this answer
Really thanks for information – Buron Feb 26 '12 at 14:45
You're welcome. if you also found it useful updvote.. :-) Cheers. – flexaddicted Feb 26 '12 at 14:50
I will when i have reputation) – Buron Feb 27 '12 at 15:18
@Buron Thank you :-) – flexaddicted Mar 3 '12 at 10:27
UIBarButtonItem *backButtonItem = [[UIBarButtonItem alloc] init];
backButtonItem.title = NSLocalizedString(@"Back", nil);
self.navigationItem.backBarButtonItem = backButtonItem;
share|improve this answer
The property backBarButtonItem of UINavigationItem takes an instance of type UIBarButtonItem and not of type NSString. Doing this would most likely result in a crash. – Tom Feb 26 '12 at 13:23
1  
You are right, sorry I did a mistake when copied it from my code. – Franck Feb 26 '12 at 13:37

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.