Question

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?

Was it helpful?

Solution

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

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

OTHER TIPS

Mostly HelveticaNeueInterface-Regular (iOS7+)

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top