iOS6 - How to Clear Cache of Homescreen/Standalone Web App?

前端 未结 9 861
悲&欢浪女
悲&欢浪女 2021-02-01 05:11

It would appear that Apple have changed the way homescreen/standalone web apps work in iOS 6. According to various blog posts (example) these apps now get their own dedicated s

9条回答
  •  星月不相逢
    2021-02-01 05:41

    Just set the request you pass to the webview to NSURLRequestReloadIgnoringLocalCacheData

    NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url]; 
    [request setCachePolicy:NSURLRequestReloadIgnoringLocalCacheData];
    [self.webView loadRequest:request];
    

提交回复
热议问题