Ok, so I use UIWebView to browse web content from my application. I don't use built in loadURL method, because I have to authenticate and handle errors, so UIWebView's loading system is not good enough. I load the content I use this method:
loadData:MIMEType:textEncodingName:baseURL:
but unfortunately when using this method the web view does not record the clicks, so it does not know when back and forward actions are available...
I was thinking of keeping track of visited urls and clicks manually, but that kind of solution may take more time than necessary, so maybe someone can give me some advice how to implement back action in this case?
loadData:MIMEType:textEncodingName:baseURL:
but unfortunately when using this method the web view does not record the clicks, so it does not know when back and forward actions are available...
I was thinking of keeping track of visited urls and clicks manually, but that kind of solution may take more time than necessary, so maybe someone can give me some advice how to implement back action in this case?