将文件从 iPhone 应用程序复制到 iTunes

发布于 2024-10-08 03:37:55 字数 149 浏览 3 评论 0原文

我试图弄清楚如何在连接时将应用程序中嵌入的铃声文件(.m4r)复制到 iTunes。将文件复制到 iTunes 后,他们可以像其他文件一样简单地同步该文件。我知道这是可能的,因为还有其他铃声应用程序可以做同样的事情。如果有人能给我指出正确的方向或者提供一些示例代码,那就太好了。谢谢。

I am trying to figure out how to copy a ringtone file (.m4r) embedded in the app to iTunes when connected. After the file is copied into iTunes, they can simply sync the file like every other file. I know this is possible, since there are other ringtone apps that do this exact same thing. If someone could point me in the right direction or maybe provide some sample code, that would be great. Thanks.

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

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

发布评论

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

评论(1

揽月 2024-10-15 03:37:55

您可以与 iTunes 共享应用程序文档目录中的文件。只需将以下 XML 添加到您的 info.plist:

<key>UIFileSharingEnabled</key>
<true/>

现在,应用程序文档目录中的文件将显示在 iTunes 的文件共享部分中。这就是你所追求的吗?

You can share files from your app's Documents directory with iTunes. Simply add the following XML to your info.plist:

<key>UIFileSharingEnabled</key>
<true/>

Now, files in your app's Documents directory will appear in the File Sharing section of iTunes. Is that what you're after?

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