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 am having a app wherein I am I am setting font for a label programmaticaly as below

[label setFont:[UIFont fontWithName:fontName size:[fontSize intValue]]];

wherein fontName is a variable that hold font name such as "Heveletica" and fontSize will hold the size for the font. This works fine for me. Now I want to make this text "Bold" how can I do that?

boldSystemFontOfSize 

works for system font. How can I achieve same for user defined fonts.

Thanks.

share|improve this question

4 Answers

up vote 9 down vote accepted

Try using @"Helvetica-Bold" as the fontName.

share|improve this answer
This appears to be simple approach. Thanks. – Tushar Vengurlekar May 24 '11 at 12:27

Try,

fontName = @"myFavouriteFont-Bold";
[label setFont:[UIFont fontWithName:fontName size:[fontSize intValue]]];

By using the the method fontWithName:size:, you can set the font name with style. Doc says that the fontName is the fully specified name of the font and this name incorporates both the font family name and the specific style information for the font.

share|improve this answer

Try this,

NSArray *arr = [UIFont fontNamesForFamilyName:@"myFavoriteFont"];
NSString *fontName = [arr objectAtIndex:0]; //or [arr objectAtIndex:1], it depends
[label setFont:[UIFont fontWithName:fontName size:[fontSize intValue]]];
share|improve this answer

Try this :

label.font = [UIFont boldSytemFontofSize:16];  // 16 for example
share|improve this answer
-1 As the question said - that works for the system font, but not a custom font. – Abizern May 24 '11 at 13:00
Yes its working to set the bold system font..Thanks – Pradeep Reddy Kypa May 1 '12 at 12:10

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.