i want to change the font of a label from helvetica to calibri bold. so i chose calibri bold in the interface builder, but on my iphone it's sill helvetica. when i try to change it in the code like:
[label setFont: [UIFont fontWithName: @"Calibri Bold" size: 48.0]];
label.textColor = [UIColor whiteColor];
the font on my iphone is helvetica 12.
where is the mistake?
thank you :)