3

如何在 Xcode 11 beta(11M336w) 中添加自定义字体。目前我无法选择自定义字体。它的显示字体未安装。

在此处输入图像描述

4

1 回答 1

0

xib 和情节提要文件只是简单的纯 XML 文件。与大多数 XML 文件一样,它们相对容易阅读。为 UILabel 或 UITextField 设置字体就像添加 xml 属性一样简单。在这种情况下<fontDescription>

在 Xcode 导航器中,导航到 xib 或 storyboard 文件并选择“Open As->Source Code”。在示例中,您可以看到一个 UITextField:

没有字体属性的 TextField

<textField opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" placeholder="Ihr Vorname" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="RLF-J9-mQz">
    <rect key="frame" x="215.66666666666663" y="16" width="231.33333333333337" height="14"/>
    <textInputTraits key="textInputTraits" autocapitalizationType="words"/>
</textField>

具有字体属性的文本字段

<textField opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" placeholder="Ihr Vorname" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="RLF-J9-mQz">
    <rect key="frame" x="215.66666666666663" y="16" width="231.33333333333337" height="14"/>
    <fontDescription key="fontDescription" name="SourceSansPro-Light" family="Source Sans Pro" pointSize="17"/>
    <textInputTraits key="textInputTraits" autocapitalizationType="words"/>
</textField>

保存文件并在 IB 中再次打开它,瞧!

于 2019-07-03T14:10:43.043 回答