热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

如何在prefix.pch中为xcode中的多种语言定义字体-Howtodefinefontsinprefix.pchformultiplelanguagesinxcode

Inmyapplicationihavedefinethefontfamiliesinprefix.pchfile.AllofthemareEnglishfonts.

In my application i have define the font families in prefix.pch file. All of them are English fonts. Now i have localized the app to support Other language. So, my question is how can i define the fonts based on the selected language (phone language)

在我的应用程序中,我已经在prefix.pch文件中定义了字体系列。所有这些都是英文字体。现在我已经将应用程序本地化以支持其他语言。所以,我的问题是我如何根据所选语言(手机语言)定义字体

#define FONT_H1 [UIFont fontWithName:@"Roboto-Medium" size:18.0]
#define FONT_H2 [UIFont fontWithName:@"Roboto-Light" size:16.0]
#define FONT_H3 [UIFont fontWithName:@"Oswald" size:14.0f]
#define FONT_H4 [UIFont fontWithName:@"Roboto-Light" size:14.0]

1 个解决方案

#1


0  

You need to write somewhere in your .m file i think

我想你需要在你的.m文件中写一些地方

like

if([[[NSLocale preferredLanguages] objectAtIndex:0] isEqualToString:@"en-US"]) {
//font for english

}
else {
//Font for chinese

}

推荐阅读
author-avatar
主宰魔尊_164
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有