UIWebView *webView=[[UIWebView alloc]initWithFrame:[[UIScreen mainScreen]bounds]];
NSString *localFilePath = [[NSBundle mainBundle] pathForResource:@"CoyoteConcentration" ofType:@"html"] ;
NSLog(@"localFilePath %@",localFilePath);
NSURLRequest *localRequest = [NSURLRequest requestWithURL:
[NSURL fileURLWithPath:localFilePath]] ;
[webView loadRequest:localRequest] ;
[self.view addSubview:webView];Add a code snippet to your website: www.paste.org