UIWebView *webView = [[UIWebViewalloc]initWithFrame:CGRectMake(0,0, frame.size.width, frame.size.width)];
webView.delegate =self;
NSString *path = [[NSBundlemainBundle]pathForResource:@"我是本地网页"ofType:@"html"];//该文件要手动加入项目中才能获取
NSString *htmlStr = [NSStringstringWithContentsOfFile:pathencoding:NSUTF8StringEncodingerror:nil];
[webView loadHTMLString:htmlStr baseURL:[NSURL URLWithString:path]];
[viewaddSubview:webView];