参考記事 Over&Out その後 UIFontのfontName一覧 これのiOS11版を行います。 今回はSwiftで書きました。 //Swift 4.0 let familyNames = UIFont.familyNames for aFamilyName in familyNames.sorted() { print(aFamilyName) for aFontName in UIFont.fontNames(forFamilyName: aFamilyName) { print("--", aFontName) } } ちなみに下はフォントの使用例です。 let myFont = UIFont(name: "AcademyEngravedLetPlain", size: 24) 結果 Academy Engraved LET -- AcademyEngravedLetPlain Al Nile -- AlNile -- AlNile-Bold American Typewriter -- AmericanTypewriter-CondensedBold -- AmericanTypewriter-Condensed -- AmericanTypewriter-CondensedLight -- AmericanTypewriter -- AmericanTypewriter-Bold -- AmericanTypewriter-Semibold -- AmericanTypewriter-Light Apple Color Emoji -- AppleColorEmoji Apple SD Gothic Neo -- AppleSDGothicNeo-Thin -- AppleSDGothicNeo-Light -- AppleSDGothicNeo-Regular -- AppleSDGothicNeo-Bold -- AppleSDGothicNeo-SemiBold -- AppleSDGothicNeo-UltraLight -- AppleSDGothicNeo-Medium Arial --...