iOS - display content from an html resource file or remote webpage in a webview
-
I am an iOS newbie. I want to have a function that loads the content from a local html resource file or a webpage depending on what is specified in a constant. How would I go about doing it? For eg, if I pass a file://... to the function or an http://... , it should render accordingly.
-
Answer:
You can easily load webpages like this: NSURLRequest *request = [NSURLRequest requestWithURL: [NSURL URLWithString:@"http://stackoverflow.com"]] ; [webView loadRequest:request] ; For local files it depends on the location of the file on your device: For files in your main-bundle (= your project), you can use the same loadRequest function, but build the path differently: NSString *localFilePath = [[NSBundle mainBundle] pathForResource:@"index" ofType:@"html"] ; NSURLRequest *localRequest = [NSURLRequest requestWithURL: [NSURL fileURLWithPath:localFilePath]] ; [webView loadRequest:request] ; and if you want to load a html-string in your webView: NSString *bundlePath = [[NSBundle mainBundle] bundlePath]; NSURL *baseURL = [NSURL fileURLWithPath:bundlePath]; NSString *htmlString = [bundlePath pathForResource:@"index" ofType:@"html"] ; [webView loadHTMLString:htmlString baseURL:baseURL]; and if your html-file resides in your documents folder of your application (for example a html-file you downloaded): NSArray *paths = NSSearchPathForDirectoriesInDomains( NSDocumentDirectory, NSUserDomainMask ,YES ); NSString *documentsDirectory = [paths objectAtIndex:0]; NSString *path = [documentsDirectory stringByAppendingPathComponent:@"index.html"]; NSURLRequest *documentsRequest = [NSURLRequest requestWithURL: [NSURL fileURLWithPath:path]] ; [webView loadRequest:documentsRequest] ;
Suchi at Stack Overflow Visit the source
Related Q & A:
- How to stop a webview Android?Best solution by Stack Overflow
- How do I change HTML content to be a JS variable?Best solution by ehow.com
- How to get html content from a webview?Best solution by Stack Overflow
- How do I change the display name that people see as my name when I send a yahoo email?Best solution by Yahoo! Answers
- Does anyone know the direct TV remote code for a dynex TV?Best solution by Yahoo! Answers
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.