我正在使用以下代码,
NSURL * url=[NSURL fileURLWithPath:htmlfilepath];
NSURLRequest * request=[[NSURLRequest alloc] initWithURL:url];
[webview loadRequest:request];
html
以外的所有内容都更新为pdf
,但signature
除外。
UIWebView: Images are not updating
但我仍面临同样的问题。
答案 0 :(得分:0)
如果您使用具有更新内容的相同网址,请使用此功能。
UIWebView* webV=[[UIWebView alloc]init];
NSString* htmlString= @"Loading...";
[webV loadHTMLString:htmlString baseURL:nil];
[webV loadRequest:[NSURLRequest requestWithURL:mainURL]];