gpt4 book ai didi

xcode - SWIFT/代码 : Get (technical) name of font for code

转载 作者:行者123 更新时间:2023-11-30 14:10:34 24 4
gpt4 key购买 nike

通过代码分配字体名称时,我需要一个与任何字体选择或文件名对话框中显示的名称不同的名称。我如何获得正确的拼写?例如。对于

  SKLabelNode(fontNamed: "GillSans-BoldItalic")   /// preload font

Fontbook 中显示的名称与本示例中使用的名称不同。字体标题中有空格,但在代码中没有。并且使用了减号。

使用显示所有字体的代码时,我找不到它,因为我安装了太多字体。

最佳答案

如果您的应用程序中不需要运行时解决方案,您可以使用此 AppleScript。它通过编写 Font Book 脚本来检索名称。结果也被复制到剪贴板

set requestedFontName to text returned of (display dialog "Enter 'human readable' font name" default answer "")
try
tell application "Font Book"
set fontName to PostScript name of 1st typeface whose name is requestedFontName
end tell
display dialog fontName buttons {"OK"} default button 1
set the clipboard to fontName
on error
display dialog "no match found"
end try

关于xcode - SWIFT/代码 : Get (technical) name of font for code,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31827713/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com