NSString *path = @"http://theo2life.com"; NSURL *url = [[NSURL alloc] initWithString:path]; [self.webView loadRequest:[NSURLRequest requestWithURL:url]];
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]]];
NSString *HTMLData = @"<img src=\"test.png\" />hello web"; [self.webView loadHTMLString:HTMLData baseURL:[NSURL fileURLWithPath: [[NSBundle mainBundle] bundlePath]]];
原文地址:http://blog.csdn.net/cerastes/article/details/41856509