保留图像数组

发布于 2024-09-25 09:47:20 字数 88 浏览 3 评论 0原文

在应用程序重新启动时保存和检索图像数组的最佳方法是什么? 我正在实现一个缓存功能,用于离线查看下载的图像,只是想确保我使用正确的持久方法。

谢谢!

What's the best way to save and retrieve an array of images across app restarts?
I'm implementing a caching feature for offline viewing of downloaded images and just want to make sure I'm using the right persisting methods.

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

指尖微凉心微凉 2024-10-02 09:47:20

最快&可能最好的解决方案是将图像保存到磁盘,毫无疑问。

您可以执行类似的操作将它们另存为 JPEG。

NSData *data = UIImageJPEGRepresentation(image, 1.0f);
[data writeToFile:imagePath atomically:YES];

The quickest & probably best solution would be to persist your images to disk, no question about it.

You could do something like this to save them as JPEG.

NSData *data = UIImageJPEGRepresentation(image, 1.0f);
[data writeToFile:imagePath atomically:YES];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文