I have a custom font I want to use for everything displaying text in my app, labels, text views etc.
IS there a way to set the default font (labels by default use SystemFont) for the whole app?
|
I have a custom font I want to use for everything displaying text in my app, labels, text views etc. IS there a way to set the default font (labels by default use SystemFont) for the whole app? |
|||
|
|
|
Probably not, you will probably have the set the font on your control yourself, but you can make the process easier by centralizing where you get the font types from, for example have the app delegate or some other common class have a method that returns the font, and anything needing to set the font can call that method, that will help in case you need to change your font, youd change it in one place rather than everywhere you set the fonts...Another alternative can be to make subclasses of your UI Elements that will automatically set the font, but that might be overkill.. |
|||||||||
|
|
It seems to be possible in iOS 5 using the UIAppearance proxy.
That will set the font to be whatever your custom font is for all UILabels in your app. You'll need to repeat it for each control (UIButton, UILabel, etc.). Remember you'll need to put the UIAppFonts value in your info.plist and include the name of the font you're including. |
|||||||||||||||||||||
|
|
NUI is an alternative to the UIAppearance proxy. It gives you control over the font (and many other attributes) of a large number of UI element types throughout your application by simply modifying a style sheet, which can be reused across multiple applications. After adding a
If you have labels with different font sizes, you could control their sizes using NUI's Label, LargeLabel, and SmallLabel classes, or even quickly create your own classes. |
|||
|
|