清除缓存的代码如下:
// 清理缓存
NSString *cachePath = [NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES) objectAtIndex:0];
NSArray *files = [[NSFileManager defaultManager] subpathsAtPath:cachePath];
NSLog(@"文件数 :%ld",[files count]);
for (NSString *p in files)
{
NSError *error;
NSString *path = [cachePath stringByAppendingString:[NSString stringWithFormat:@"/%@",p]];
if([[NSFileManager defaultManager] fileExistsAtPath:path])
{
[[NSFileManager defaultManager] removeItemAtPath:path error:&error];
}
}
在iOS8上可以清理缓存,在iOS9 和 iOS10上无效。
먼저 경로가 유효한지 확인하세요! 절대 경로 또는 상대 경로를 얻었습니까?
두 번째로
NSString *path = [cachePath stringByAppendingString:[NSString stringWithFormat:@"/%@",p]];
이 방법으로 stringByAppendingPathComponent를 사용하는 것이 가장 좋습니다