Hi, I just watched the UIWebView tutorial, which was really great! But I want to load html file from the local project folder, not from internet. How can I do that? I understand I only need to change the following line:
Code:
[webView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"http://www.apple.com"]]];
I am assuming there about fileURLWithPath class function of the NSURL, but I don't know the absolute path of the project folder and how to reference a file from it.
Thanks for help!!