File tree Expand file tree Collapse file tree 1 file changed +18
-4
lines changed Expand file tree Collapse file tree 1 file changed +18
-4
lines changed Original file line number Diff line number Diff line change @@ -492,19 +492,33 @@ configuration.customSkipView = [self customSkipView];
492492+(void )clearDiskCache;
493493
494494/* *
495- 清除指定Url的图片本地缓存
495+ 清除指定Url的图片本地缓存(异步)
496496
497- @param imageUrlArray 图片Url数组
497+ @param imageUrlArray 需要清除缓存的图片Url数组
498498 */
499499+(void )clearDiskCacheWithImageUrlArray:(NSArray <NSURL *> *)imageUrlArray;
500500
501501/* *
502- 清除指定Url的视频本地缓存
502+ 清除指定Url除外的图片本地缓存(异步)
503+
504+ @param exceptImageUrlArray 不需要清除缓存的图片Url数组,此url数组的图片缓存将被保留
505+ */
506+ +(void )clearDiskCacheExceptImageUrlArray:(NSArray <NSURL *> *)exceptImageUrlArray;
507+
508+ /* *
509+ 清除指定Url的视频本地缓存(异步)
503510
504- @param videoUrlArray 视频url数组
511+ @param videoUrlArray 需要清除缓存的视频url数组
505512 */
506513+(void )clearDiskCacheWithVideoUrlArray:(NSArray <NSURL *> *)videoUrlArray;
507514
515+ /* *
516+ 清除指定Url除外的视频本地缓存(异步)
517+
518+ @param exceptVideoUrlArray 不需要清除缓存的视频Url数组,此url数组的视频缓存将被保留
519+ */
520+ +(void )clearDiskCacheExceptVideoUrlArray:(NSArray <NSURL *> *)exceptVideoUrlArray;
521+
508522/* *
509523 * 获取XHLaunch本地缓存大小(M)
510524 */
You can’t perform that action at this time.
0 commit comments