What are the pros and cons of using .ttf fonts in an ios application

542 views Asked by At

Has anyone used .ttf fonts in an ios application?

What are the pros and cons?

Are they better than using regular fonts? My fonts appear blurred on iPhone 6.

1

There are 1 answers

8
Devang Tandel On

Let us look at the pros and cons of using custom .ttf fonts in iOS application

Pros:

  • Custom fonts allow us to include fonts that are not given by IDE.
  • With custom fonts we can give user an attractive UI, so far that is the main purpose of using custom fonts in our app.

Cons:

  • Custom font need to be included into your resource folder, it will lag your application at the time of startup.

These are some two points I came through so far.