如何在 swiftui 中添加自定义字体?

Posted

技术标签:

【中文标题】如何在 swiftui 中添加自定义字体?【英文标题】:How do I add custom fonts in swiftui? 【发布时间】:2020-11-20 03:14:53 【问题描述】:

我想在我的 swift ui 游戏中添加自定义字体。有谁知道这是怎么做到的吗?我尝试观看 youtube 视频,但找不到任何好的视频。

【问题讨论】:

这能回答你的问题吗? SwiftUI won't display custom font 【参考方案1】:

为您的项目添加自定义字体并在.plist中注册 https://developer.apple.com/documentation/uikit/text_display_and_fonts/adding_a_custom_font_to_your_app

然后定义

extension Font 
    struct Event 
        let name = Font.custom("GillSans-UltraBold", size: 14)
        let location = Font.custom("GillSans-SemiBold", size: 10)
        let date = Font.custom("GillSans-UltraBold", size: 16)
        let price = Font.custom("GillSans-SemiBoldItalic", size: 12)
    
    static let event = Event()

示例用法:

Text("iPhone 12 Pro Super Max").font(Font.event.name)

【讨论】:

以上是关于如何在 swiftui 中添加自定义字体?的主要内容,如果未能解决你的问题,请参考以下文章

Xcode 9:好奇的自定义字体行为

如何在 swiftui 中添加自定义字体?

如何在 SwiftUI 中使用 Font Awesome 作为自定义字体?

如何在 ListView 和 AlertDialog 中设置自定义字体?

C++11 用户自定义字面值

如何查看 SwiftUI 可以作为自定义字体提供的其他字体选项?