`
jsntghf
  • 浏览: 2481696 次
  • 性别: Icon_minigender_1
  • 来自: 苏州
社区版块
存档分类
最新评论

UIWebView中显示本地图片的方法

    博客分类:
  • iOS
阅读更多

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>

 

about.png和html文件在同一个目录下。

 

示例:

 

NSString *path = [[NSBundle mainBundle] bundlePath];
NSURL *baseURL = [NSURL fileURLWithPath:path];
NSString *htmlString = [NSString stringWithContentsOfFile:[[NSBundle mainBundle]pathForResource:@"about" ofType:@"html"]  encoding:NSUTF8StringEncoding error:nil];
[self.webView loadHTMLString:htmlString baseURL:baseURL];
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics