I have the following:

header file:

 UINavigationBar *navigationBar;
  UINavigationItem *navigationItem;

implementation file: in viewDidLoad method I tried these:

self.navigationBar.topItem.title = @"title text";

and also this:

  self.navigationItem.title = @"MyTitle";
  [self.navigationBar pushNavigationItem:navigationItem animated:NO];

But no title seems to appear on the black up bar:

enter image description here

Has anyone any idea?Thank you! EDIT: enter image description here

link|improve this question

71% accept rate
Who does create navigation bar? How do you out that view? – Nekto Sep 21 '11 at 12:00
try in viewDidLoad please add self.title=@"Title"; – Ram Sep 21 '11 at 12:06
Look at my edit:) – adrian Sep 21 '11 at 12:06
@Ram...no change at all:D – adrian Sep 21 '11 at 12:08
Why don't you just set the title in Interface Builder? – LucasTizma Sep 21 '11 at 12:09
show 3 more comments
feedback

2 Answers

up vote 2 down vote accepted
  1. You should define in your class property:

    @property (nonatomic, assign) IBOutlet UINavigationBar *navigationBar;

  2. You should set that class as File's Owner.

  3. You should connect your navigation bar with property from 1. (Using IBOutlet)
  4. Now you can set its title using : self.navigationBar.topItem.title = @"title text";
link|improve this answer
No working.There is a problem...even if I set the title by xib file...I can't see it on the simulator! – adrian Sep 21 '11 at 12:18
Your IBOutlet view of controller is connected to what view in xib? – Nekto Sep 21 '11 at 12:43
worked!...thank you very much! – adrian Sep 21 '11 at 12:43
Glad to here that from you – Nekto Sep 21 '11 at 12:48
working 100% if you stuck that mean you created xib file copying other file. Check all connection references, if you see any exclamation sign (!), that means something went wrong. – Vaibhav Saran Dec 16 '11 at 13:13
feedback

Try this:-

UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 320, 30)];
label.font = [UIFont boldSystemFontOfSize:14.0];
label.shadowColor = [UIColor colorWithWhite:0.0 alpha:0.5];
label.backgroundColor = [UIColor clearColor];
label.textAlignment = UITextAlignmentCenter;
label.textColor = [UIColor whiteColor];
self.navigationItem.titleView = label;
label.text = [dataItem objectForKey:@"title"];
[label release];
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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