Guest User

Untitled

a guest
Jan 16th, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. [_detailsWebView loadRequest:[NSURLRequest requestWithURL:[NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource: _htmlFile ofType:@"html"] isDirectory:NO]]];
  2.  
  3. -(void)loadHTMLFiles:(NSString*)htmlFile
  4. {
  5. //I assume u have set IBOutlet of detailsWebView
  6. [_detailsWebView loadRequest:[NSURLRequest requestWithURL:[NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:htmlFile ofType:@"html"] isDirectory:NO]]];
  7. }
  8.  
  9. [ViewController *objViewController = [ViewController alloc]init];
  10. //here newView is pushed in navigation or add SubView
  11. [objViewController loadHTMLFiles:yourHTMLFileName];
Add Comment
Please, Sign In to add comment