如何在iPhone sdk上进行多任务?

发布于 2024-11-09 15:03:08 字数 358 浏览 0 评论 0原文

我希望能够在 Matt Gallagher 的 AudioStream iPhone 应用程序中执行多任务处理,该应用程序可以在此处找到 http://cocoawithlove.com/2008/09/streaming-and-playing-live-mp3-stream.html 我通过添加到 info.plist 尝试了 uibackground 但它不起作用关于如何让它发挥作用有什么想法吗?我确实阅读了苹果文档,但没有找到任何内容。任何代码都会被应用,

谢谢,

I want to be able to multitask in Matt Gallagher's AudioStream iphone application which can be found over here http://cocoawithlove.com/2008/09/streaming-and-playing-live-mp3-stream.html I tried uibackground by adding to info.plist but it isn't working any ideas on how to make it work? I did read the apple documentation but I have failed to find anything. any code would be appritated

thanks,

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

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

发布评论

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

评论(1

晨曦慕雪 2024-11-16 15:03:08

将其添加到您的 info.plist

<key>UIBackgroundModes</key>
    <array>
        <string>audio</string>
        <string>voip</string>
        <string>location</string>
    </array>

add this to your info.plist

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