Skip to main content
18
results
Andrew Fletcher
For detailed notes regarding how to add custom fonts to your iOS app see Apple's custom font notes. When using the font programmatically, remember that the font file name most of the time will not be the font name.  For example, I wanted to use SF-Pro-Text-Bold and its font name is SFProText-Bold.  If you want to check the font name, add the following script for family in UIFont.familyNames.sorted() { let names = UIFont.fontNames(forFamilyName: family) print("Family:...
Andrew Fletcher
Working on formatting the date in Xcode, and you come across the situation where...
Andrew Fletcher
Adding a floating decimal point for n number of places is quite easy to achieve....