How to play audio in background in iphone os 4.0?
A:
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.
Warrior
2010-10-11 07:45:35