diff --git a/EVURLCache.podspec b/EVURLCache.podspec index 89eb27f..f25bb50 100755 --- a/EVURLCache.podspec +++ b/EVURLCache.podspec @@ -8,7 +8,7 @@ Pod::Spec.new do |s| # s.name = "EVURLCache" -s.version = "3.2.1" +s.version = "3.3.0" s.summary = "NSURLCache subclass for handeling all web requests that use NSURLRequest" s.description = "This is a NSURLCache subclass for handeling all web requests that use NSURLRequest. (This includes UIWebView)" s.homepage = "https://github.com/evermeer/EVURLCache" diff --git a/EVURLCache/ViewController.swift b/EVURLCache/ViewController.swift index 36074f5..ce4a39f 100755 --- a/EVURLCache/ViewController.swift +++ b/EVURLCache/ViewController.swift @@ -18,7 +18,7 @@ class ViewController: UIViewController, UIWebViewDelegate { //EVURLCache.RECREATE_CACHE_RESPONSE = false // This flag is only used for debuging the small difference between recreating a response and unarchiving a response. Recreating (which is the default) seems to be working best... - if let url = URL(string: "https://www.iubenda.com/privacy-policy/8051057") { + if let url = URL(string: "https://evict.nl") { NSLog("navigating to \(url)") webView.loadRequest(URLRequest(url: url)) }