How can I use small caps in Swift 5 (Storyboard) / Xcode 11?
Here's what I'm trying to accomplish.
I figured out how to do it in SwiftUI:
Text("Typography")
.font(Font.system(.body).smallCaps())
But don’t now how to do it within a Storyboard-App.
This is my code so far:
labelBrand.font = UIFont.monospacedSystemFont(ofSize: 14, weight: UIFont.Weight.bold)
labelPorsche.font = UIFont.monospacedSystemFont(ofSize: 18, weight: UIFont.Weight.regular)
Thanks for your Help.