Michael Voccola
Michael Voccola

Reputation: 1835

Largest Possible Font Size on iOS

Is it possible to make a font larger than 300pt on iOS? If not, what are alternative approaches when dealing with UILabels?

Upvotes: 0

Views: 340

Answers (1)

NSDeveloper
NSDeveloper

Reputation: 1640

You can make a font larger than 300pt. In storyboard, you need open it as source code and change the pointSize.

<fontDescription key="fontDescription" ... pointSize="400"/>

but why you need such a large font.

Upvotes: 2

Related Questions