How to play audio in b开发者_运维百科ackground in iphone os 4.0?
Just set the UIBackgroundModes to audio in the info.plist.
open the info.plist as plain text file and add
<key>UIBackgroundModes</key>
<array>
<string>audio</string>
</array>
to your plist file and save it.
All the Best.
精彩评论