I want to mention the font name,font size and typeface values in my application.
I mentioned the name and size.
But I can't do the typeface value.
So please tell me how to set that value.
I want to mention the font name,font size and typeface values in my application.
I mentioned the name and size.
But I can't do the typeface value.
So please tell me how to set that value.
UIFont *font = [UIFont fontWithName:@"Helvetica-Bold" size:12];
or for a label:
UILabel *label =[[UILabel alloc] init];
label.font = [UIFont fontNamesForFamilyName:@"Helvetica"];