WKWebView+PAWebCache.h 417 B

1234567891011121314151617181920
  1. //
  2. // WKWebView+PAWebCache.h
  3. // Pkit
  4. //
  5. // Created by llyouss on 2017/12/28.
  6. // Copyright © 2017年 llyouss. All rights reserved.
  7. //
  8. #import <WebKit/WebKit.h>
  9. @interface WKWebView (PAWebCache)
  10. /** 清除webView缓存 */
  11. - (void)clearWebCacheFinish:(void(^)(BOOL finish,NSError *error))block;
  12. /** 清理缓存的方法,这个方法会清除缓存类型为HTML类型的文件*/
  13. - (void)clearHTMLCache;
  14. @end