The simplest solution
Assuming that your app ships with the JavaScript code, and doesn't fetch it over the network, a simple solution is to make your JavaScript code inline instead of an external resource. That is, you can put the contents of code39.js between the <script> tags, just like your other JavaScript code.
Of course, this doesn't work very well if you want to add a lot of code, and further complicates your HTML. Your NSString declaration is going to get (even more) unwieldy very quickly!
Alternative: Add the script as a resource
You can add the JavaScript file as a resource file to be included inside your app bundle. To do this, just add code39.js to your Xcode project.
Note that by default, Xcode will add .js files to your "compile sources" build phase. You don't want this; you to treat the file as a resource. Thankfully, it's easy to fix:
- Select the top-level project to access its settings.
- Click on your application target, then choose "Build Phases".
- Drag your
.js file out of the "Compile Sources" section and into the "Copy Bundle Resources" section.
This will ensure that Xcode copies the script file to the "Resources" directory when you build your app.
Finding the script resource's URL
Once your script is included as a resource, you need to find the URL that points to its location on the filesystem. Fortunately, Cocoa makes this pretty easy to do:
NSURL* url = [[NSBundle mainBundle] URLForResource:@"code39" withExtension:@"js"];
The url you get back is the absolute URL to the code39.js file inside your app bundle. From there, it should be pretty trivial to insert this URL into another string, like so:
NSString* html = [NSString stringWithFormat:@"<script src='%@'>", url];
Once your load your HTML, the UIWebView will have the full URL to your script, and it should execute. This method worked in a test project I just created for iOS 6.0.
(Side note: I strongly recommend keeping your HTML content separate from your source code as well. You can easily adapt the approach above to read the contents of a plain text file into an NSString.)