如何将图像存储在本地iPhone Bundel中

发布于 2024-10-12 18:48:24 字数 119 浏览 0 评论 0原文

我有一个应用程序,我将所有数据下载到本地。

在这个数据中还有图像,我想将此图像存储在本地。

我可以将此图像存储在本地吗? 如果是 ! 如何 ?

从网上的图片路径(url)来的。

i have one application in that i download all data in local .

in this data also image coming i want to store this image in local .

can i store this image in local?
if yes !
how ?

from online image path (url) coming.

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

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

发布评论

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

评论(1

能怎样 2024-10-19 18:48:24

将图像保存到 UIImage 中,然后像这样保存到本地;

NSData *imageData = UIImagePNGRepresentation(image);
        NSString *imageName = [NSString stringWithFormat:@"image.png"];

        NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
        NSString *documentsDirectory = [paths objectAtIndex:0];
        NSString *fullPathToFile = [documentsDirectory stringByAppendingPathComponent:imageName];
        [imageData writeToFile:fullPathToFile atomically:YES];

Save the image in UIImage and then save it to local like this;

NSData *imageData = UIImagePNGRepresentation(image);
        NSString *imageName = [NSString stringWithFormat:@"image.png"];

        NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
        NSString *documentsDirectory = [paths objectAtIndex:0];
        NSString *fullPathToFile = [documentsDirectory stringByAppendingPathComponent:imageName];
        [imageData writeToFile:fullPathToFile atomically:YES];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文