在iPhone中,如何将从媒体选择器中选取的音频文件存储到某个目录?
如何将从 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是 NSData 类的一种方法,因此,一旦您从媒体选择器中获取了音频,您应该完全能够以这种方式将其写入文件。
注意:您可能必须先将选取的音频转换为 NSData
干杯
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