开发者

Which font is used by [UIFont systemFontOfSize:15]?

开发者 https://www.devze.com 2023-01-17 16:00 出处:网络
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

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 tha开发者_StackOverflow社区t really is?


You should be able to inspect the fontName property of the UIFont returned by [UIFont systemFontOfSize:15].

NSString *fontName = [UIFont systemFontOfSize:15].fontName;


Mostly HelveticaNeueInterface-Regular (iOS7+)

0

精彩评论

暂无评论...
验证码 换一张
取 消