带有二进制的 Monotouch 捆绑字体

发布于 2024-09-03 10:54:08 字数 101 浏览 2 评论 0原文

如果我们购买了一种字体用于我们的应用程序,是否可以捆绑该字体并在应用程序中使用它?我们正在创建需要动态生成按钮并需要使用特定字体的应用程序。

干杯

w://

If we went and bought a font for use in our app, is it possible to bundle the font and use it inside the app? We're creating apps that need to generate buttons on the fly and need to use a specific font for it.

Cheers

w://

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

烟沫凡尘 2024-09-10 10:54:08

将字体放入项目根目录(与 Info.plist 同一级别)中,并列出 Info.plist 中的文件:

<key>UIAppFonts</key>
<array>
   <string>Fonts/Quicksand_Bold.otf</string>
   <string>Fonts/Quicksand_Book.otf</string>
</array>

然后将 MonoDevelop 中的文件添加到项目中,并将构建操作设置为“Content”。之后,您可以使用字体:

UILabel title = new UILabel (new RectangleF (80, 190, 160, 60));
title.Font = UIFont.FromName("QuicksandBook-Regular", 20);
title.SetTitle ("Font Demo");

如果您在确定正确的字体名称时遇到问题,您可以使用此代码片段来检索所有已安装字体的列表:

String fonts = "";
List<String> fontFamilies = new List<String> (UIFont.FamilyNames);
fontFamilies.Sort ();
foreach (String familyName in fontFamilies) {
  foreach (String fontName in UIFont.FontNamesForFamilyName (familyName)) {
    fonts += fontName + "\n";
  }
  fonts += "\n";
}
Console.WriteLine (fonts);          

Put your fonts into a directory in your project root (same level as Info.plist) and list the files in Info.plist:

<key>UIAppFonts</key>
<array>
   <string>Fonts/Quicksand_Bold.otf</string>
   <string>Fonts/Quicksand_Book.otf</string>
</array>

Then add the files in MonoDevelop to your project and set the build action to "Content". After that you can use the font:

UILabel title = new UILabel (new RectangleF (80, 190, 160, 60));
title.Font = UIFont.FromName("QuicksandBook-Regular", 20);
title.SetTitle ("Font Demo");

If you have problems determining the right font name you can use this code snipped to retrive a list of all installed fonts:

String fonts = "";
List<String> fontFamilies = new List<String> (UIFont.FamilyNames);
fontFamilies.Sort ();
foreach (String familyName in fontFamilies) {
  foreach (String fontName in UIFont.FontNamesForFamilyName (familyName)) {
    fonts += fontName + "\n";
  }
  fonts += "\n";
}
Console.WriteLine (fonts);          
℡寂寞咖啡 2024-09-10 10:54:08

据我所知,没有 Monotouch 库,但您可以尝试移植这个库:

There no Monotouch library out there from what I know, but you could try porting this one:

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文