gpt4 book ai didi

iphone - 退出和加载应用程序时如何将图像保存并读取到我的临时文件夹

转载 作者:行者123 更新时间:2023-12-03 18:29:50 25 4
gpt4 key购买 nike

我想在应用程序关闭时将 UIImage 保存并读取到临时文件夹中,然后在应用程序加载时加载并删除它。我该如何实现这个目标。请帮忙。

最佳答案

这些方法允许您从 iPhone 上的文档目录中保存和检索图像

+ (void)saveImage:(UIImage *)image withName:(NSString *)name {
NSData *data = UIImageJPEGRepresentation(image, 1.0);
NSFileManager *fileManager = [NSFileManager defaultManager];
NSString *fullPath = [documentsDirectory stringByAppendingPathComponent:name];
[fileManager createFileAtPath:fullPath contents:data attributes:nil];
}

+ (UIImage *)loadImage:(NSString *)name {
NSString *fullPath = [documentsDirectory stringByAppendingPathComponent:name];
UIImage *img = [UIImage imageWithContentsOfFile:fullPath];

return img;
}

关于iphone - 退出和加载应用程序时如何将图像保存并读取到我的临时文件夹,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1934852/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com