Cocoa 应用程序中的自定义字体
我知道您可以通过使用 Interface Builder 并选择字体来自定义字体。但是,我很好奇是否可以使用系统默认情况下不包含的自定义字体。有没有办法在我的应用程序中包含自定义字体?
I know you can customize fonts by using Interface Builder and selecting a font. However, I'm curious if I can use a custom font that's not included by default on systems. Is there a way to include a custom font in my application?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
虽然手动字体激活过程是一种选择,但您也可以考虑
ATSApplicationFontsPath
Info.plist 键:信息属性列表密钥参考:
我一定要仔细检查,但我相信这个功能是在 OS X 10.5.x 中添加的(Jinhyung Park 发布的代码所针对的)。
While the manual font activation procedure is one option, you might also consider the
ATSApplicationFontsPath
Info.plist key:Information Property List Key Reference:
I'd be sure to double-check, but I believe this functionality was added in OS X 10.5.x (which the code posted by Jinhyung Park targets).
ATSApplicationFontsPath 使用 [NSBundle mainbundle] 路径作为基本路径,因此当 Resources 文件夹不位于此处时(例如,对于应用程序插件),它不起作用。
在我的 Cocoa 插件中,我需要使用 CTFontManagerRegisterFontsForURL 加载自定义字体
积分: https:/ /github.com/OneSadCookie/Extendaword/blob/master/Extendaword/main.m
ATSApplicationFontsPath uses [NSBundle mainbundle] path as base path, so it does not work when Resources folder is not located there (e.g. for app plugins).
In my Cocoa plugin I need to load custom fonts using CTFontManagerRegisterFontsForURL
Credits: https://github.com/OneSadCookie/Extendaword/blob/master/Extendaword/main.m
以下是 Mac App 自定义字体加载的示例。
Here is the example for Mac App custom font loading.
我已经设法使用 cocos2d (CCLabelBMFont) 和 hiero 工具来做到这一点。您需要使用 hiero 创建字体,并将该字体提供给 CCLabelBMFont 对象。
I have managed to do this using cocos2d (CCLabelBMFont) and hiero tool. You will need to create the font using the hiero, and give this font to the CCLabelBMFont object.