码迷,mamicode.com
首页 > Web开发 > 详细

UIWebView的三种加载方式

时间:2014-12-11 00:19:24      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:uiwebview   加载本地   html   

1、直接给出url地址即可将web content载入。
NSString *path = @"http://theo2life.com";  
NSURL *url = [[NSURL alloc] initWithString:path];  
[self.webView loadRequest:[NSURLRequest requestWithURL:url]]; 

2、将本地html文件内容嵌入webView
NSString *resourcePath = [ [NSBundle mainBundle] resourcePath];  
NSString *filePath  = [resourcePath stringByAppendingPathComponent:@"test.html"];  
NSString *htmlstring =[[NSString alloc] initWithContentsOfFile:filePath encoding:NSUTF8StringEncoding error:nil];   
[self.webView loadHTMLString:htmlstring  baseURL:[NSURL fileURLWithPath: [[NSBundle mainBundle]  bundlePath]]];  


3.如果不从html文件载,直接加载NSString:
NSString *HTMLData = @"<img src=\"test.png\" />hello web";  
[self.webView loadHTMLString:HTMLData baseURL:[NSURL fileURLWithPath: [[NSBundle mainBundle]  bundlePath]]];  


UIWebView的三种加载方式

标签:uiwebview   加载本地   html   

原文地址:http://blog.csdn.net/cerastes/article/details/41856509

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!