vote up 0 vote down star
1

I have a very simple Mac Cocoa app that just has a Web View that loads an HTML file with some CSS and JavaScript. I have hooked up the app delegate to this method:

- (void)applicationDidFinishLaunching:(NSNotification *)aNotification {
  NSString* filePath = [[NSBundle mainBundle] pathForResource: @"index" ofType: @"html"];
  NSURL *url = [NSURL URLWithString: filePath];
  [[self.webView mainFrame] loadHTMLString: [NSString stringWithContentsOfFile: filePath] baseURL: url];
}

The index.html file contains the following:

<html>
  <head>
    <title>Hello, World!</title>
    <link href="style.css" rel="stylesheet" type="text/css" />
    <script type="text/javascript" src="jquery.js"></script>
    <script type="text/javascript">
      jQuery(function($){
        $('h1').fadeOut()
      })
    </script>
  </head>
  <body>
    <h1>Hello, World!</h1>
  </body>
</html>

The style.css file gets loaded correctly, because I set the background to grey in that, so I know it can load other assets from the resource bundle. The javascript code does not get executed. If I open index.html in Safari, the Hello World h1 disappears, as expected. Why doesn't this happen in the app in my WebView? Do I have to do something to enable JavaScript? The box next to JavaScript is checked in Interface Builder.

The code for this is available at http://github.com/pjb3/WebViewApp

flag

2 Answers

vote up 2 vote down check

You don't have to do anything to enable JavaScript; it's enabled in the WebView by default. And like you said, you can always check in Interface Builder that the JavaScript checkbox is selected.

What you have to do, though, is make sure that the baseURL you're specifying is correct (since in the html file you're referring to jquery.js with a relative URL using just the filename) and that you've included the jquery.js file into the bundle resources.

The code you posted will result in a nil value for the url variable: +URLWithString: expects a valid URL string (that conforms to RFC 2396) as the argument (which the filesystem path you're providing is not). What you want is +fileURLWithPath:, and you also need to use the filesystem path of the directory where index.html and jquery.js reside, which you can get by removing the filename from the path you've got (using NSString's -stringByDeletingLastPathComponent:). Here's how you get the correct baseURL:

NSURL *url = [NSURL fileURLWithPath:[filePath stringByDeletingLastPathComponent]];
link|flag
I've made these updates, which make sense, but it still doesn't seem to work. You can see the code at github.com/pjb3/WebViewApp – pjb3 Jul 12 at 13:20
Ah, I figured it out. I didn't know what you meant by "included the jquery.js file into the bundle resources". I dragged the .js files that were in the resources folder into the "Copy Bundle Resources" um...thing :), under WebViewApp in Targets. All is well now, thank you! – pjb3 Jul 12 at 13:53
vote up 0 vote down

In addition to what hasseg said: Why not use this to load the file instead?

NSURL *url = [NSURL fileURLWithPath:filePath];
[self.webView setMainFrameURL:url];
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.