Same as this question , but for OSX app, not iOS app.
UIKit and therefore UILabel are not available for apps other than iOS ...
Is there a way to do something similar to
[[UILabel appearance] setFont:[UIFont fontWithName:@"YourFontName" size:17.0]];
which will work in OSX application? Or, if I could set the default / global font and color via Xcode, and not programmatically, that would be great too.
source
share