目次
Xcode の新機能

A B C D E

F

カスタムフォントをテキストに適用

Font

標準フォントの取得

  • static let extraLargeTitle2: Font     Beta  
  • static let extraLargeTitle: Font     Beta  
  • static let largeTitle: Font
  • static let title: Font
  • static let title2: Font
  • static let title3: Font
  • static let headline: Font
  • static let subheadline: Font
  • static let body: Font
  • static let callout: Font
  • static let caption: Font
  • static let caption2: Font
  • static let footnote: Font
  • システムフォントの取得

  • static func system(Font.TextStyle, design: Font.Design?, weight: Font.Weight?) -> Font
  • static func system(size: CGFloat, weight: Font.Weight?, design: Font.Design?) -> Font
  • enum Design
  • フォントデザインの取得

  • enum TextStyle
  • フォントテキストスタイルの取得

  • case extraLargeTitle2   Beta  
  • case extraLargeTitle   Beta  
  • case largeTitle
  • case title
  • case title2
  • case title3
  • case headline
  • case subheadline
  • case body
  • case callout
  • case caption
  • case caption2
  • case footnote
  • struct Weight

    フォントウェイトの取得

  • static let black: Font.Weight
  • static let bold: Font.Weight
  • static let heavy: Font.Weight
  • static let light: Font.Weight
  • static let medium: Font.Weight
  • static let regular: Font.Weight
  • static let semibold: Font.Weight
  • static let thin: Font.Weight
  • static let ultraLight: Font.Weight
  • カスタムフォントの作成

  • static func custom(String, fixedSize: CGFloat) -> Font
  • static func custom(String, size: CGFloat, relativeTo: Font.TextStyle) -> Font
  • static func custom(String, size: CGFloat) -> Font
  • 別のフォントからフォントを取得

  • init(CTFont)
  • フォントのスタイルを設定

  • func bold() -> Font
  • func italic() -> Font
  • func monospaced() -> Font
  • func monospacedDigit() -> Font
  • func smallCaps() -> Font
  • func lowercaseSmallCaps() -> Font
  • func uppercaseSmallCaps() -> Font
  • func weight(Font.Weight) -> Font
  • func width(Font.Width) -> Font
  • func leading(Font.Leading) -> Font
  • enum Font.Leading
  • 先頭の行間オプションの取得

  • case standard
  • case loose
  • case tight
  • 廃止されたシンボル

  • static func system(Font.TextStyle, design: Font.Design) -> Font   廃止  
  • static func system(size: CGFloat, weight: Font.Weight, design: Font.Design) -> Font   廃止  

  • フォントの設定

  • func font(Font?) -> some View
  • func fontDesign(Font.Design?) -> some View
  • func fontWeight(Font.Weight?) -> some View
  • func fontWidth(Font.Width?) -> some View
  • var font: Font?
  • フォント

  • property list key ATSApplicationFontsPath
  • property list key UIAppFonts
  • FormatInput
  • FormatOutput


  • G H I J K L M N O P Q R S T U V W XYZ