gpt4 book ai didi

ios - 将多个 NSData 文件保存到 iOS 中的文档文件夹

转载 作者:行者123 更新时间:2023-11-29 02:27:48 25 4
gpt4 key购买 nike

我想将多个图像保存到我的文档路径文件夹中。我的网络服务返回多个图像 url 路径,我想将每个图像保存到我的文档文件夹中。此过程成功运行,但我的 View 此时卡住(将图像 url 转换为 NSData)。我正在使用以下代码。如何避免这个问题?

NSData * data = [NSData dataWithContentsOfURL:[NSURL URLWithString:[[usersArray objectAtIndex:i]objectForKey:@"message"]]];
NSString *localImgpath = [directoryPath stringByAppendingPathComponent:[NSString stringWithFormat:@"%@.%@",imageName, @"png"]];
[data writeToFile:localImgpath atomically:YES];

最佳答案

您可能希望像这样在后台线程中处理它:

dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
NSData * data = [NSData dataWithContentsOfURL:[NSURL URLWithString:[[usersArray objectAtIndex:i]objectForKey:@"message"]]];
NSString *localImgpath = [directoryPath stringByAppendingPathComponent:[NSString stringWithFormat:@"%@.%@",imageName, @"png"]];
[data writeToFile:localImgpath atomically:YES];
});

关于ios - 将多个 NSData 文件保存到 iOS 中的文档文件夹,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27288763/

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