在iPhone中,如何将从媒体选择器中选取的音频文件存储到某个目录?

发布于 2024-10-15 03:19:43 字数 210 浏览 1 评论 0原文

如何将从 mediaPicker 中选取的音频文件写入某个特定文件夹?我们目前正在使用此方法将图像写入文件路径:

[UIImagePNGRepresentation(image) writeToFile:pngPath atomically:YES];

是否可以对音频文件执行相同的操作?

谢谢。

How can I write an audio file picked from mediaPicker into some particular folder? We are currently writing image to file path with this method:

[UIImagePNGRepresentation(image) writeToFile:pngPath atomically:YES];

Is it possible for to do the same kind of thing with an audio file?

Thanks.

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

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

发布评论

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

评论(1

定格我的天空 2024-10-22 03:19:43
- (BOOL)writeToFile:(NSString *)path atomically:(BOOL)flag

是 NSData 类的一种方法,因此,一旦您从媒体选择器中获取了音频,您应该完全能够以这种方式将其写入文件。


注意:您可能必须先将选取的音频转换为 NSData

干杯

- (BOOL)writeToFile:(NSString *)path atomically:(BOOL)flag

is a method of the NSData class, so, once you have fetched your audio from the media picker, you should totally be able to write it to a file that way.


Note: You might have to convert the audio picked to NSData first

Cheers

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文