iOS loadHtmlString no UIWebView não funciona com Javascript

Eu tenho um aplicativo iOS para carregar uma seqüência de caracteres html que se referem ao arquivo css externo e arquivo javascript no mesmo diretório.

Aqui está o meu arquivo html:

<html>
<head>
    <meta name="viewport" content= user-scalable="no", width="device-width" />
    <meta http-equiv="Content-Type" content="text/html"; charset="UTF-8"/> 
    <link rel="stylesheet" type="text/css" href="mystyle.css" />
    <script type="text/javascript" src="myjavascript.js"></script>
</head>

O arquivo css funciona bem, mas parece que o arquivo js nunca foi carregado. Qual seria a razão?

A propósito, estou usando o método loadHtmlString: BaseUrl para carregar minha string html.

obrigado

questionAnswers(3)

yourAnswerToTheQuestion