0

我试图为我的应用程序创建字体扩展,如下所示:

import SwiftUI

extension Font {
    // H1
    static var largeTitle: Font {
        return Font.custom("Roboto-Bold", size: 34)
    }
    
    // H2
    static var title: Font {
        return Font.custom("Roboto-Bold", size: 24)
    }

    // Body 2 (input title)
    static var caption: Font {
        return Font.custom("Roboto-Regular", size: 14)
    }

...

字体在模拟器中正确应用。但是实时预览在诊断窗口中崩溃并出现以下错误

ambiguous use of 'caption'

----------------------------------------

CompileDylibError: Failed to build LoginView.swift

Compiling failed: ambiguous use of 'caption'

/src/Login/LoginView.swift:31:31: error: ambiguous use of 'caption'
                        .font(Font.caption)
                              ^
/src/Font.swift:38:16: note: found this candidate
    static var caption: Font {
               ^
SwiftUI.Font:14:23: note: found this candidate
    public static var caption: Font

难道我做错了什么?有可能修复它吗?

4

1 回答 1

0

问题是它Font已经有一个名为caption. 请参阅其文档。您应该不能添加具有相同名称和类型的属性,那段代码根本不应该编译。

您需要重命名您的属性以解决歧义。

这同样适用于titleand largeTitle,你不应该重新创建已经存在的属性Font,你应该重命名它们。

与您的问题无关,但无需将这些属性添加为计算属性,它们可以是不可变的存储属性。

extension Font {
    // H1
    static var robotoLargeTitle = Font.custom("Roboto-Bold", size: 34)
    
    // H2
    static var robotoTitle = Font.custom("Roboto-Bold", size: 24)

    // Body 2 (input title)
    static let robotoCaption = Font.custom("Roboto-Regular", size: 14)
}
于 2021-01-19T10:04:51.037 回答