下面是加載HTML代碼UIWebView加載服務器HTML,如何加載本地圖像?
UIWebView *webView = [[UIWebView alloc]initWithFrame:CGRectMake(0, 0, self.view.frame.size.width, self.view.frame.size.height)];
[[NSBundle mainBundle] pathForResource:@"111" ofType:@"jpg"];
NSURLRequest *repuest = [NSURLRequest requestWithURL:[NSURL URLWithString:@"http://192.168.0.5/index.html"]];
[webView loadRequest:repuest];
[self.view addSubview:webView];
下面是HTML代碼
<img src="111.jpg" />
<hr />
這樣做的圖像無法加載。在這種情況下,如何將HTML加載到圖片中?
可能的重複http://stackoverflow.com/questions/747407/using-html-and-local-images-within-uiwebview。 – 2013-04-24 07:30:49
也許你需要指定一個'baseurl'? – 2013-04-24 07:31:11
不重複。我的HTML位於服務器之上。 – 2013-04-24 07:36:47