I have to show rich text that i pull from server, so i’m using UIWebView. Now the problem is that i have no control over the font which is used in UIWebView. How can i change the font to use system font (making it consistent with rest of the application)?
I’m doing something like this at the moment:
myRichTextView = [[UIWebView alloc] initWithFrame:CGRectMake(x, y, width, height)]; myRichTextView.backgroundColor = [UIColor clearColor]; [myRichTextView setScalesPageToFit:NO]; [myRichTextView loadHTMLString:myString baseURL:[NSURL URLWithString:myBaseURL]];
Again, need to control the display font. If i can’t control the font, please let me know other alternatives to UIWebView.
Thanks
Reference a css style sheet in your HTML document or put the style information into the top of the HTML document itself