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
[lblTitle setFont:[UIFont fontWithName:@"FtraBk__1" size:9]];
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.