[UIFont systemFontOfSize:15] 使用哪种字体?
我想使用与我的应用程序文本的其余部分具有相同印刷外观的 UIWebView,这些文本都使用 [UIFont systemFontOfSize:15]
。但在进行一些法医研究之前,也许有人知道那到底是什么字体?
I'd like to use a UIWebView with the same typographical appearance as the rest of my app texts which all use [UIFont systemFontOfSize:15]
. But before doing some forensic research maybe someone knows what font that really is?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您应该能够检查
[UIFont systemFontOfSize:15]
返回的 UIFont 的fontName
属性。You should be able to inspect the
fontName
property of the UIFont returned by[UIFont systemFontOfSize:15]
.主要是 HelveticaNeueInterface-Regular (iOS7+)
Mostly HelveticaNeueInterface-Regular (iOS7+)