我使用自定义字体系列" Aller Typo"在我们的应用程序中具有支持多语言文本编辑(UITextView)和使用 -
的功能" AllerTypo光强"用于纯文本(无类型面)
" AllerTypo-经常"大胆。
" AllerTypo-LightItalic"斜体。
" AllerTypo斜体"粗体斜体。
问题是当我在这个字体系列中不支持的文本(字形)上应用字体时,它可能会回退到字体(例如" Helvetica"俄语文本系列)重新应用客户端字体特征但不知道我使用" AllerTypo-Regular"它的版本是粗体 - 。请帮我解决这个问题。
请参阅下面的代码段,了解我上面谈到的内容。
// Apply current theme on default attributes (like font, text color)
NSMutableAttributedString *updatedAttribText = [attribText mutableCopy];
[updatedAttribText beginEditing];
[attribText enumerateAttributesInRange:NSMakeRange(0, attribText.length)
options:0
usingBlock:^(NSDictionary *attrs, NSRange range, BOOL *stop) {
// Check for font attributes
UIFont *textRunfont = [attrs objectForKey:NSFontAttributeName];
NSMutableDictionary *updatedAttribs = [attrs mutableCopy];
[updatedAttribs updateAttributesWithTextStyle:textRunfont.fontDescriptor.symbolicTraits action:YES fontFamily:@"Aller Typo"];
// Check for default text color now
UIColor *textRunColor = [attrs objectForKey:NSForegroundColorAttributeName];
if ([textRunColor isEqual:[UIColor colorWithRed:0 green:0 blue:0 alpha:1.0]]) {
UIColor *defaultTextColor = [[QGThemeHelper currentTheme] uiTextViewTextColor];
[updatedAttribs setValue:defaultTextColor forKey:NSForegroundColorAttributeName];
}
[updatedAttribText setAttributes:updatedAttribs range:range];
}];
[updatedAttribText endEditing];
NSMutableDictionary类别方法,用于更新文本属性。
- (void)updateAttributesWithTextStyle:(UIFontDescriptorSymbolicTraits)updateStyleTraits action:(BOOL)addAction fontFamily:(NSString *)familyName
{
UIFont *currentFont = [self objectForKey:NSFontAttributeName];
UIFontDescriptorSymbolicTraits updatedTraits = 0;
// Fetch existing traits and then apply the text style
if (!addAction) { // Remove
updatedTraits = ([currentFont qg_textStyleTraits] & ~updateStyleTraits);
}
else { // Apply
updatedTraits = ([currentFont qg_textStyleTraits] | updateStyleTraits);
}
// Appropriate font from the family with mentioned traits (bold, italic, bold italic).
NSString *updatedFontName = [UIFont qg_fontNameFromFamily:familyName withTextStyleTraits:updatedTraits];
UIFont *updatedFont = [UIFont fontWithName:updatedFontName size:currentFont.pointSize];
[self setObject:updatedFont forKey:NSFontAttributeName];
}
换句话说,有什么方法可以与后备系统沟通我的意图(字体定制)?斜体功能很好,因为" AllerTypo-Italic" font携带该特性,系统在后备期间重新应用。
附加说明 - 文本内容源(属性文本)是存储在CoreData中的编码HTML标记,也可以同步回我们的网络应用程序。
答案 0 :(得分:2)
您是否尝试过UIFontDescriptorCascadeListAttribute
。
为了实现这一点,您可能需要使用UIFont
创建-[UIFont fontWithDescriptor:size:]
,对于描述符,您需要将属性UIFontDescriptorCascadeListAttribute
设置为您要回退的字体