Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a way to change default font for your application

Tags:

ios

fonts

As I understand all standard controls use system font by default.

Also, API [UIFont systemFontOfSize: ] uses system font too.

Is there a way to redefine it for the whole application, instead of setting a font for table, labels and so on?

like image 964
Victor Ronin Avatar asked Aug 12 '13 21:08

Victor Ronin


1 Answers

The answer is no, you cant change apple's systemFont, you need to set the font on your control yourself.

For best way to set a default font for whole iOS app, please check the below SO questions:

Set a default font for whole iOS app?

How to set a custom font for entire iOS app without specifying size

How do I set a custom font for the whole application?

Is there a simple way to set a default font for the whole app?

like image 65
Tarek Hallak Avatar answered Nov 14 '22 19:11

Tarek Hallak