iOS简单高效的将图片存入沙盒,并再次调用(避坑指南)

为了增强一些用户体验,防止图片频繁下载,或者想取用一些手机本地的照片存在程序内,我们就需要将图片存入程序沙盒内,并在需要的时候再次调用,因为iOS的程序每次启动,沙盒路径都会变,所以我们只能存储Documents文件夹之后的路径。

闲话少说,上代码!

//保存图片到沙盒内,并返回存储图片的后缀地址
+ (NSString *)saveImageToCacheUseImage:(UIImage *)image
{
    //获取当前时间戳拼接到文件尾部,防止存储图片多时地址重复
    NSDate *currentDate = [NSDate dateWithTimeIntervalSinceNow:0];
    // *1000 是精确到毫秒,不乘就是精确到秒
    NSTimeInterval currentTime=[currentDate timeIntervalSince1970]*1000;
    NSString *timeString = [NSString stringWithFormat:@"%.0f", currentTime];
    
    //这个路径是存储到本地用的图片后缀地址
    NSString *savePath= [NSString stringWithFormat:@"Documents/image_%@.png", timeString];
    //这个路径是将图片存入沙盒时的路径
    NSString *imageAllPath = [NSHomeDirectory() stringByAppendingPathComponent:savePath];
    //存储图片到沙盒,并返回结果
    BOOL result =[UIImagePNGRepresentation(image) writeToFile:imageAllPath atomically:YES];
    
    if (result == YES) {
        NSLog(@"保存成功");
    } else {
        NSLog(@"保存失败");
    }
    return savePath;
}

//根据图片的后缀地址, 重新拼接完成路径获取图片
+ (UIImage *)getCacheImageUseImagePath:(NSString *)imagePath
{
    //防止每次启动程序沙盒前缀地址改变,只存储后边文件路径,调用时再次拼接
    NSString *imageAllPath = [NSHomeDirectory() stringByAppendingPathComponent:imagePath];
    
    return [UIImage imageWithContentsOfFile:imageAllPath];
}

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章