0

I can't figure out how to change the text size. I can change the font to .largeTitle but that's as big as the text will get.

Bob Gilmore
  • 12,608
  • 13
  • 46
  • 53

1 Answers1

0

If you're using UIKit:

label.font = UIFont.systemFont(ofSize: 10, weight: .medium)

If you're using SwiftUI:

Text("something")
.font(.system(size: 10, weight: .light))
shayegh
  • 302
  • 1
  • 9