I'm writing an ios app that uses a UIWebView
to display local html content as a help subsystem. The user can follow links to other local html content and I want to be able to tell what page the UIWebView
is currently displaying.
I have tried webView.request.URL.absoluteString
and similar variants but it gives me the app bundle and not the local html file within. How can I get the name of the local file being accessed?