I am using the SF UI Display for iOS on Xcode and I chose the Ultralight option, and this is what shows up on the storyboard (the correct version)
This is what shows on the simulator when I run it, it looks much bolder and doesn't seem right...
I am using the SF UI Display for iOS on Xcode and I chose the Ultralight option, and this is what shows up on the storyboard (the correct version)
This is what shows on the simulator when I run it, it looks much bolder and doesn't seem right...
Since San Francisco is the System Font, no need to choose custom and use San Francisco, just use system.
If it's a button, try this
[button.titleLabel setFont:[UIFont systemFontOfSize:size weight: UIFontWeightUltraLight]];
If it's a label, try this:
[label setFont:[UIFont systemFontOfSize:size weight: UIFontWeightUltraLight]];
In each of those cases, replace "size" with your desired font size.
EDIT: For Swift (labels), refer to this StackOverflow post
EDIT 2: For Swift (buttons), refer to this StackOverflow post