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 using "Swanky and Moo Moo" in my application, but it displays the font style as like of system font..

Here my code....

myLabel.font=[UIFont fontWithName:@"Swanky and Moo Moo" size:16];

I have refer the following links..

iOS: How can i set a non system font family, style, size of UILabel?

http://kgriff.posterous.com/45359635

But thats are not useful for me.......

Can antone tell me that how to set the myLabel font style as Swanky and Moo Moo??

share|improve this question
Dont use file name of that font, open font in your Mac in font book and write same name present in font book – P.J Jan 16 at 10:17
Please take a look it will help codefriends.blogspot.in/2012/04/… – amar Jan 16 at 10:21
@Prateek in font book, the font name is like Swanky and Moo Moo only – Mountain Lion Jan 16 at 10:23
Please check this for reference: stackoverflow.com/questions/13922705/… – Luke Jan 16 at 10:24

2 Answers

up vote 1 down vote accepted
  1. Add your custom font files into your project using XCode as resources.
  2. Add key font provided by application to your info plist.(array key)
  3. For each font add the full font file name along with extension as item into the key.
  4. Now you can use the font as UIFont *customFont = [UIFont fontWithName:fontName size:fontSize];
  5. The catch the font name is not the font file name every time.....
  6. you can install the font file to check its font name....use that name and you are sorted....
    Note:- If it still dosent work go to build phases ->copy bundle resources and add all your font files
share|improve this answer
1  
ty build phases ->copy bundle resources and add all your font files this will helps me..... – Mountain Lion Jan 16 at 10:31
what's the name of the font you use finally? Swanky and Moo Moo? I am curious if you need to use the Full name or Postcript name. – tiguero Jan 16 at 10:33

Beside the solution you will find on SO you need to make sure you provide the exact name you will see for the Full name or 'Postscript name tag in fontbook. Try SwankyandMooMoo or Swanky and Moo Moo.

share|improve this answer

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.