up vote 3 down vote favorite
2
share [g+] share [fb]

i have used This code: self.navigationItem.title=@"My Name is ABC"; i want to change the font size as well as font Type's also so how can i change both with this code?

link|improve this question

feedback

2 Answers

up vote 7 down vote accepted

Sample Code :

CGRect frame = CGRectMake(0, 0, 400, 44);
UILabel *label = [[[UILabel alloc] initWithFrame:frame] autorelease];
label.backgroundColor = [UIColor clearColor];
label.font = [UIFont boldSystemFontOfSize:8.0];
label.textAlignment = UITextAlignmentCenter;
label.textColor = [UIColor whiteColor];
label.text = @"Sample custom Title With small Fonts ";
self.navigationItem.titleView = label;
link|improve this answer
Thanks man!It's really very simple.. – KnightRider May 5 '10 at 11:42
That's great... But: If you have a Back button on the left, the view is shifted to the right. Is there anything that can be done to prevent this? Thanks! – jowie Jan 12 '11 at 16:18
+1 on @joe's comment. My title is no longer centered. – Corey Tenold Jul 8 '11 at 16:29
We need to add rightbar pr leftbar button item with nil.. to balance.. If we have rightbarbuttonItem add nil button at leftbarbutton and vice versa... – mihir mehta Jul 11 '11 at 4:37
feedback

To make the above example centered you have to have the size be only as wide as the text, this should do the trick

UIFont * font = [UIFont fontWithName:@"Helvetica" size:18.0f];
CGRect frame = CGRectMake(0, 0, [@"Lorem Ipsum" sizeWithFont:font].width, 44);
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.