webview中的图像未更新

时间:2016-06-21 08:46:15

标签: ios objective-c uiwebview

我正在使用以下代码,

NSURL * url=[NSURL fileURLWithPath:htmlfilepath];
NSURLRequest * request=[[NSURLRequest alloc] initWithURL:url]; 
[webview loadRequest:request]; 

html以外的所有内容都更新为pdf,但signature除外。

UIWebView: Images are not updating

但我仍面临同样的问题。

1 个答案:

答案 0 :(得分:0)

如果您使用具有更新内容的相同网址,请使用此功能。

UIWebView*  webV=[[UIWebView alloc]init];

NSString* htmlString= @"Loading...";

[webV loadHTMLString:htmlString baseURL:nil];

[webV loadRequest:[NSURLRequest requestWithURL:mainURL]];