I have a requirement for some labels in my app to use Lucida Grande. When I specify this font in Xcode it renders correctly in the xib, but when you launch the app in Yosemite it switches back to Helvetica Neue.
How can I get this to work correctly?
As per Ken's advice, setting the font manually in the awakeFromNib() method gives the correct result.
You can either set the font property of the NSTextField
or use an NSAttributedString
Interestingly, in many cases I have seen fonts with spaces in the font name input with dashes, i.e. @"Lucida-Grande", this actually breaks the output, dashes must be omitted.