How can I can use the font: HelveticaNeue Regular
in my labels? I can do it with IB, but programmatically that seems that it's not possible.
Is HelveticaNeue-Medium the regular one or HelveticaNeue?
You can find all fonts here:
list of iPhone fonts
For Helvetica you would do:
In Objective-C:
UIFont *helvFont = [UIFont fontWithName:@"HelveticaNeue" size:14.0];
In Swift:
let helvFont = UIFont(name: "HelveticaNeue", size: 14.0)
So the regular one would indeed by HelveticaNeue
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With