gpt4 book ai didi

iphone - 如何以编程方式下载音频文件?

转载 作者:太空狗 更新时间:2023-10-30 03:33:11 25 4
gpt4 key购买 nike

我想从以下链接下载音频文件

audio file link

我已经尝试过发布在这个网站上的其他答案。但我不想使用 ASIHTTPRequest,所以任何人都可以告诉我如何将该链接内容下载到我的文档目录。

最佳答案

你可以这样写:

//Download data
NSData *data = [NSData dataWithContentsOfURL:<YOUR URL>];

//Find a cache directory. You could consider using documenets dir instead (depends on the data you are fetching)
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES);
NSString *path = [paths objectAtIndex:0];

//Save the data
NSString *dataPath = [path stringByAppendingPathComponent:@"filename"];
dataPath = [dataPath stringByStandardizingPath];
BOOL success = [data writeToFile:dataPath atomically:YES];

关于iphone - 如何以编程方式下载音频文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11628903/

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