Tushar Chutani
Tushar Chutani

Reputation: 1560

how to multi task on iPhone sdk?

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,

Upvotes: 1

Views: 216

Answers (1)

saadnib
saadnib

Reputation: 11145

add this to your info.plist

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

Upvotes: 1

Related Questions