I\'m showing a web app in an UIWebView, and sometimes the content of pages will change. After content have been changed the app clears the cache. But when I go
UIWebView
I had the same issue and setting HTTPShouldHandleCookies property to NO fixed my problem.
For example:
NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:strurl]]; [request setHTTPShouldHandleCookies:NO]; [webView loadRequest: request];
Hope this help.