Fork me on GitHub

加载本地Html文件

http://blog.csdn.net/workhardupc100/article/details/7443580

 

UIWebView *webView = [[[UIWebView allocinitWithFrame:CGRectMake(00320480)] autorelease];

NSString *htmlPath = [[[NSBundle mainBundlebundlePath]stringByAppendingPathComponent:@"Quartz2D.html"];

htmlPath = [htmlPath stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]; 

[webView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:htmlPath]]];

[self.view addSubview:webView];

posted on 2012-04-14 09:38  pengyingh  阅读(305)  评论(0)    收藏  举报

导航