Paste
Pasted as Plain Text by srinu ( 14 years ago )
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];
Revise this Paste