我正在尝试将本地 html 内容加载到 uiwebview 中。我已经准备好了 html 内容,我正在通过如下代码所示的机制向内容添加一个在线 css 文件的引用。但是,我面临的问题是当我加载 webview 时,没有样式。此外,我在 Charles Proxy 中进行了验证,没有将 iphone.css 文件提取到我的基本服务器的传出调用。理想情况下,在加载 html 页面时,uiwebview 应该获取所有引用的资源,但由于某种我不知道的原因,它没有获取 css 文件。
请查看并让我知道我的代码是否存在我无法在此处识别的问题?
NSString* htmlString = @"<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\"> <html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"he\" lang=\"he\"><head><link type=\"text/css\" href=\"http://<base_server>/resources/iphone.css\" /><meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" /></head><body>%@</body></html>";
UIWebView *webview = [[UIWebView alloc] initWithFrame:CGRectMake(0, 0, frame.size.width, frame.size.height)];
NSLog(@"%@",[NSString stringWithFormat:htmlString,entry.body]);
[webview loadHTMLString:[NSString stringWithFormat:htmlString,entry.body] baseURL:[NSURL URLWithString:@"http://<base_server>/"]];
[self addSubview:webview];