UIWebView的本地图片显示

Html代码:

<html>  
    Opening Hours:<br/>  
    Monday to Friday 7am and 7pm<br/>  
    Saturday from 8am until 12noon<br/><br/>  
    Northcross Physiotherapy and Rehabilitation is a Physiotherapy Private Practice situated in the Northcross Specialist Centre. This is a private company established by it's current principle. The practice's primary activity involves the provision of specialist physiotherapy services and education to the local population. This has been in operation at the current site since June 1997 and at premises closer to the Albany Village since 1991. As well as this website, Northcross Physiotherapy also has a Trade Me listing.<br/>  
    <img src="about.png" width="320" height="241"/>  
</html>  

iOS代码:

1 NSString *path = [[NSBundle mainBundle] bundlePath];  
2 NSURL *baseURL = [NSURL fileURLWithPath:path];  
3 NSString *htmlString = [NSString stringWithContentsOfFile:[[NSBundle mainBundle]pathForResource:@"about" ofType:@"html"]  encoding:NSUTF8StringEncoding error:nil];  
4 [self.webView loadHTMLString:htmlString baseURL:baseURL];  

注意:about.png文件要跟about.html文件在同一目录下。

posted @ 2014-05-07 23:29  激情为梦想而生  阅读(111)  评论(0编辑  收藏  举报