tags:

views:

39

answers:

1

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