I have an application which was working till ios 9.2 and now it suddenly stopped working since ios 9.3. Issue is: cachedResponseForRequest is giving us values null if we do the following in webViewDidFinishLoad.
func webViewDidFinishLoad(webView: UIWebView) {
let cachedURLResponse = NSURLCache.sharedURLCache().cachedResponseForRequest((webView.request)!)
}
The above line of code does work till ios 9.2 I did confirm. What could be the potential issue here does anyone know ?