How To Clear Image cache or any cache in AFNetworking?

后端 未结 5 1660
半阙折子戏
半阙折子戏 2021-02-06 00:30

Hi All can any one help me out how to clear the cache in AFNetworking.

I used to have old version of AFNetworking and i see that it has been updated, Can any body help m

5条回答
  •  耶瑟儿~
    2021-02-06 00:51

    AFImageDownloader *imageDownloader = [AFImageDownloader   defaultInstance];
    
    NSURLCache *urlCache = imageDownloader.sessionManager.session.configuration.URLCache;
    
    [urlCache removeAllCachedResponses];
    
    [imageDownloader.imageCache removeImageWithIdentifier:url];
    

    this will help to remove image in cash. url is the image url that needs to remove

提交回复
热议问题