Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

What font does UIWebView use by default? I would like to be able to change that. But I don't want to do it in the html string, instead I want to have something like:

[webView setFont:[UIFont fontWithName:@"GothamRounded-Bold" size:14]

is there such property or some other way?

share|improve this question

5 Answers

up vote 0 down vote accepted

Just prefix a <font face> tag to your string before loading into the webView.

NSString *body = [plist objectForKey:@"foo"];
NSString *htmlString = [NSString stringWithFormat:@"<font face='GothamRounded-Bold' size='3'>%@", body];
[webView loadHTMLString:htmlString baseURL:nil];
share|improve this answer

You can use your UIFont object (so you can set it and modify more easily), but wrap the HTML in a span instead; font tags have been deprecated since HTML 4.01.

UIFont *font = [UIFont fontWithName:@"GothamRounded-Bold" size:14];

Assuming you already have the NSString *htmlString created, you can use the font's properties:

htmlString = [NSString stringWithFormat:@"<span style=\"font-family: %@; font-size: %i\">%@</span>",
                                                   font.fontName,
                                                   (int) font.pointSize,
                                                   htmlString];
share|improve this answer

You could try to set the font by injecting a line of JavaScript like this:

[webView stringByEvaluatingJavaScriptFromString: @"document.body.style.fontFamily = 'GothamRounded-Bold'"];
share|improve this answer

Surely UIWebView uses the font defined by the HTML it's displaying?

share|improve this answer
yes, but I would like to be able to read text as simple as <p> my text </p> and be able to have a font set by default, because I am reading text from plist which has lots of entries and it really sucks to have font defined in all of them. – Au Ris Sep 21 '12 at 15:32

UIWebview uses the font that's set in the HTML. There is not 'default font'. Even if no font is specifically mentioned, you do not have access to set it. It's all inside the WebKit, which we don't have access to.

share|improve this answer
Hmm, too bad. It would be handy to have a setFont property like it is in UITextView. – Au Ris Sep 21 '12 at 15:30

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.