2

Hi I am using a custom fonts in my application. First of all I include the font in .plist the then I have tried to use font in these two way

  1. [lblTitle setFont:[UIFont fontWithName:@"FtraBk__1" size:9]];

  2. UIFont *CustomFont = [UIFont fontWithName:@"FtraBk__1" size:9];

    [lblTitle setFont:CustomFont];

But in the both cases font size in not working. I am using these custom fonts in uitableviewcustomcell. So how can I adjust custom font Height.

Nik's
  • 690
  • 1
  • 10
  • 27
  • Make sure the name of the font is correct. Does it show up as the correct font, but you just can't adjust the size? – shabbirv Apr 26 '12 at 05:40
  • ya it is showing the correct font don't know why I cant adjust the font size... – Nik's Apr 26 '12 at 05:43

1 Answers1

0

This is very interactive thinking to use custom Font in IPhone APP

This link have lot of idea bout Custom Font.

Can I embed a custom font in an iPhone application?

Community
  • 1
  • 1
Ankit Gupta
  • 958
  • 1
  • 6
  • 19