I'm trying to display a set of strings to a webview, I know it can be done, I try to create my own html for it,
[contentWebView loadHTMLString:[NSString stringWithFormat:@"<html><head><link rel=\"stylesheet\" href=\"default.css\" type=\"text/css\" /><script type=\"text/javascript\" src=\"default.js\"></script></head><body%@>%@</body></html>", cssFontSizeOverride, webcontent] baseURL:nil];
but the result, it never show anything, I'm just having a blank page. Any one know how to troubleshoot this? Thanx in advance.