I'm using a UIWebView to render local html content (special html content with javascript). The html content needs to get incrementally updated often, but every time that happens and I reload the web view, it does a little "dance" to refresh, which is very distracting, especially since the updates are very minor and happen often. If I could just freeze the display, reload the page behind the scenes, and then repaint the display, I'm sure that would look fine. But, can I do that? Or are there any other approaches to refresh an html page (or just some of the content of the page) seamlessly?
Thank you in advance for the help!