With a UIWeb view, how do I build html? For instance, I have some header html. But then I want to inject a javascript and pass data into it. After I insert the javascript, I want to append the rest of the html that is located in a .html file.
The javascript would be something like this:
<script type="text/javascript">
var script_object = myNSStringValue1;
var volunteer_name = myNSStringValue2;
</script>
Thoughts?