我在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。
答案 0 :(得分:4)
安排NSTimer
每6秒触发一次,然后拨打-[UIWebView reload]
。