1

我正在尝试UITextViewNSAttributedString. 我正在NSAttributedString从富文本文件“ .rtf”加载。

my 中文件的名称[NSBundle mainBundle]My Text-HelveticaNeue.rtfMy Text-TimesNewRomanPSMT.rtfMy Text-MarkerFelt-Thin.rtf这些文件都具有正确的字体集。他们也有一些文字粗体。

这是我的代码:

NSString *resourseName = [NSString stringWithFormat:@"My Text-%@", self.currentFontName];
NSURL *rtfUrl = [[NSBundle mainBundle] URLForResource:resourseName withExtension:@".rtf"];
NSError *error;

NSAttributedString *myAttributedTextString = [[NSAttributedString alloc] initWithFileURL:rtfUrl options:nil documentAttributes:nil error:&error];

myTextView.attributedText = myAttributedTextString;

NSLog(@"%@", myAttributedTextString);

Helvetica Neue 文件保留所有格式,包括粗体文本。但是其他文件只保留它们的字体;他们不保留粗体字。我可能做错了什么?

编辑:

我遵循了@Rob 的建议,这是我得到的输出。

Name:HelveticaNeue
Font:<UICTFont: 0xc1aab30> font-family: "Helvetica Neue"; font-weight: normal; font-style: normal; font-size: 13.00pt
Bold:<UICTFont: 0xc1af770> font-family: "Helvetica Neue"; font-weight: bold; font-style: normal; font-size: 13.00pt

Name:MarkerFelt-Thin
Font:<UICTFont: 0xfb16170> font-family: "MarkerFelt-Thin"; font-weight: normal; font-style: normal; font-size: 13.00pt
Bold:<UICTFont: 0xfb18c60> font-family: "MarkerFelt-Thin"; font-weight: normal; font-style: normal; font-size: 13.00pt

Name:TimesNewRomanPSMT
Font:<UICTFont: 0xc1cb730> font-family: "Times New Roman"; font-weight: normal; font-style: normal; font-size: 13.00pt
Bold:<UICTFont: 0xc1c9b30> font-family: "Times New Roman"; font-weight: normal; font-style: normal; font-size: 13.00pt
4

1 回答 1

1

iOS 不提供 MarkerFelt-Thin 的粗体或斜体版本,因此您无法显示它。

iOS 确实提供 TimesNewRomanPS-BoldMT,但它似乎并不认为它是 TimesNewRomanPSMT 的粗体版本。(我没有测试过,但从你的评论来看,我认为 TimesNewRomanPS-ItalicMT 也是如此;它存在但不被认为是斜体。)我可能会认为这是一个错误并打开雷达。

这里的一个关键点是你不要“粗体”或“斜体”字体。粗体字体和斜体字体本身就是完整的字体(由字体设计师单独设计并打包到自己的字体定义中)。它们只是与基本(“罗马”)版本有象征关系。如果没有安装字体的粗体版本,则请求粗体只会返回相同的字体。

您可以使用以下程序探索哪些字体可用,以及 iOS 认为另一种字体的粗体版本是什么字体:

void LogFontNamed(NSString *name) {
  UIFont *font = [UIFont fontWithName:name size:13];
  UIFontDescriptor *boldFontDescriptor = [[font fontDescriptor] fontDescriptorWithSymbolicTraits:UIFontDescriptorTraitBold];
  UIFont *boldFont = [UIFont fontWithDescriptor:boldFontDescriptor size:13];

  NSLog(@"=================");
  NSLog(@"Name:%@", name);
  NSLog(@"Font:%@", font);
  NSLog(@"Bold:%@", boldFont);
  NSLog(@"=================");
}

void printFonts() {
// uncomment if you want to explore the font lists
//  NSLog(@"%@",[UIFont familyNames]);
//  NSLog(@"%@", [UIFont fontNamesForFamilyName:@"Times New Roman"]);

  LogFontNamed(@"HelveticaNeue");
  LogFontNamed(@"MarkerFelt-Thin");
  LogFontNamed(@"TimesNewRomanPSMT");
  LogFontNamed(@"TimesNewRomanPS-BoldMT");
}
于 2013-09-30T21:59:20.683 回答