Skip to content

Commit

Permalink
v3.7.0 - 1.增加几种清除缓存的接口,2.增加几种倒计时按钮类型,3.已知问题优化与修复...
Browse files Browse the repository at this point in the history
  • Loading branch information
CoderZhuXH committed Oct 9, 2017
1 parent ac5ac9f commit fa6360c
Showing 1 changed file with 18 additions and 4 deletions.
22 changes: 18 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -492,19 +492,33 @@ configuration.customSkipView = [self customSkipView];
+(void)clearDiskCache;

/**
清除指定Url的图片本地缓存
清除指定Url的图片本地缓存(异步)
@param imageUrlArray 图片Url数组
@param imageUrlArray 需要清除缓存的图片Url数组
*/
+(void)clearDiskCacheWithImageUrlArray:(NSArray<NSURL *> *)imageUrlArray;

/**
清除指定Url的视频本地缓存
清除指定Url除外的图片本地缓存(异步)
@param exceptImageUrlArray 不需要清除缓存的图片Url数组,此url数组的图片缓存将被保留
*/
+(void)clearDiskCacheExceptImageUrlArray:(NSArray<NSURL *> *)exceptImageUrlArray;

/**
清除指定Url的视频本地缓存(异步)
@param videoUrlArray 视频url数组
@param videoUrlArray 需要清除缓存的视频url数组
*/
+(void)clearDiskCacheWithVideoUrlArray:(NSArray<NSURL *> *)videoUrlArray;

/**
清除指定Url除外的视频本地缓存(异步)
@param exceptVideoUrlArray 不需要清除缓存的视频Url数组,此url数组的视频缓存将被保留
*/
+(void)clearDiskCacheExceptVideoUrlArray:(NSArray<NSURL *> *)exceptVideoUrlArray;

/**
* 获取XHLaunch本地缓存大小(M)
*/
Expand Down

0 comments on commit fa6360c

Please sign in to comment.