Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save hertz315/e6b746845911b907287a783a0cf60577 to your computer and use it in GitHub Desktop.
Save hertz315/e6b746845911b907287a783a0cf60577 to your computer and use it in GitHub Desktop.
커스텀 폰트 적용 - 폰트 이름 확인

커스텀 폰트 적용 - 폰트 이름 확인

    func checkFonts() {
        for family: String in UIFont.familyNames {
                        print(family)
                        for names : String in UIFont.fontNames(forFamilyName: family){
                            print("=== \(names)")
                        }
                    }
    }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment