I'm loading a dynamic HTML page that includes AJAX into an UIWebView. The content of the already loaded HTML page might change during time. None of the UIWebViewDelegate Methods get called if that happens. How can I find out if the content changed?
I'm aware of the solution to just use a timer to periodically track changes of the displayed HTML content. But I would very much prefer to get notified if the content changed. How could I achieve this?