在uiwebview(iphone)中刷新html文件的内容

时间:2011-01-25 14:34:48

标签: javascript iphone html uiwebview

我在UIWebView中加载了一个简单的html文件。这个html包含一个Webcam的单个图像。

<img id="image" src="http://server.tld/lastwebcamimage.jpg" width="300" height="245" />

现在我想每隔6秒刷新一次htmlfile / image ,并显示更新的网络摄像头图像。

我试过了:

<meta content="no-cache" http-equiv="cache-control">
<meta content="no-cache" http-equiv="pragma">
<meta content="6" http-equiv="refresh">

<script type="text/javascript">
    var active = window.setInterval("reloadMe()", 6000);
    function reloadMe() {
        window.location.reload()
    }
</script>

它最重要的工作。还有其他人知道刷新页面的方法吗?

THX。

1 个答案:

答案 0 :(得分:4)

安排NSTimer每6秒触发一次,然后拨打-[UIWebView reload]