If we want to reference a font usually we will be using,
Font: For Ex. let font = UIFont(name: "HelveticaNeue",size :14)
In case of using, San Francisco font, I wasn't able to reference the font the same way,
let font = UIFont(name: "SFUIText-Semibold",size :14)
Instead, I have to reference like this,
let font = UIFont(name: ".SFUIText-Semibold",size:14)
What is the difference between the both? and how come using a ".(dot)" operator before the font name reference to SF Font.
UINavigationBar
– Sohil R. Memon